Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@
"categories": {
"coreInformation": "Core Information",
"other": "Other",
"standardSections": "Standard Sections"
"standardSections": "Standard Sections",
"yetiSections": "Yeti Sections"
},
"change": "Change",
"chooseImage": "Choose Image",
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
import {
YetiExploreCarouselSection,
YetiExploreCarouselSectionProps,
} from "../custom/yeti/components/YetiExploreCarouselSection.tsx";
import {
YetiFaqSection,
YetiFaqSectionProps,
} from "../custom/yeti/components/YetiFaqSection.tsx";
import {
YetiFooterSection,
YetiFooterSectionProps,
} from "../custom/yeti/components/YetiFooterSection.tsx";
import {
YetiHeaderSection,
YetiHeaderSectionProps,
} from "../custom/yeti/components/YetiHeaderSection.tsx";
import {
YetiLocationHeroSection,
YetiLocationHeroSectionProps,
} from "../custom/yeti/components/YetiLocationHeroSection.tsx";
import {
YetiPromoBannerSection,
YetiPromoBannerSectionProps,
} from "../custom/yeti/components/YetiPromoBannerSection.tsx";
import {
YetiStoreInfoSection,
YetiStoreInfoSectionProps,
} from "../custom/yeti/components/YetiStoreInfoSection.tsx";

export interface YetiSectionsCategoryProps {
YetiHeaderSection: YetiHeaderSectionProps;
YetiLocationHeroSection: YetiLocationHeroSectionProps;
YetiStoreInfoSection: YetiStoreInfoSectionProps;
YetiPromoBannerSection: YetiPromoBannerSectionProps;
YetiExploreCarouselSection: YetiExploreCarouselSectionProps;
YetiFaqSection: YetiFaqSectionProps;
YetiFooterSection: YetiFooterSectionProps;
}

export const YetiSectionsCategoryComponents = {
YetiHeaderSection,
YetiLocationHeroSection,
YetiStoreInfoSection,
YetiPromoBannerSection,
YetiExploreCarouselSection,
YetiFaqSection,
YetiFooterSection,
};

export const YetiSectionsCategory = Object.keys(
YetiSectionsCategoryComponents
) as (keyof YetiSectionsCategoryProps)[];
Loading
Loading