forked from Weaverse/aspen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
components.ts
145 lines (144 loc) · 5.54 KB
/
components.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
import type {HydrogenComponent} from '@weaverse/hydrogen';
import * as AllProducts from '~/sections/all-products';
import * as BlogPost from '~/sections/blog-post';
import * as Blogs from '~/sections/blogs';
import * as CollectionBanner from '~/sections/collection-banner';
import * as CollectionFilters from '~/sections/collection-filters';
import * as CollectionList from '~/sections/collection-list';
import * as ColumnsWithImages from '~/sections/columns-with-images';
import * as ColumnsWithImagesItems from '~/sections/columns-with-images/items';
import * as ColumnWithImageItem from '~/sections/columns-with-images/column';
import * as Countdown from '~/sections/countdown';
import * as CountdownActions from '~/sections/countdown/actions';
import * as CountDownTimer from '~/sections/countdown/timer';
import * as FeaturedCollections from '~/sections/featured-collections';
import * as FeaturedProducts from '~/sections/featured-products';
import * as ImageBanner from '~/sections/image-banner';
import * as ImageGallery from '~/sections/image-gallery';
import * as ImageGalleryItem from '~/sections/image-gallery/image';
import * as ImageGalleryItems from '~/sections/image-gallery/items';
import * as ImageWithText from '~/sections/image-with-text';
import * as ImageWithTextContent from '~/sections/image-with-text/content';
import * as ImageWithTextImage from '~/sections/image-with-text/image';
import * as Map from '~/sections/map';
import * as Page from '~/sections/page';
import * as ProductInformation from '~/sections/product-information';
import * as PromotionGrid from '~/sections/promotion-grid';
import * as PromotionGridButtons from '~/sections/promotion-grid/buttons';
import * as PromotionGridItem from '~/sections/promotion-grid/item';
import * as RelatedArticles from '~/sections/related-articles';
import * as RelatedProducts from '~/sections/related-products';
import {commonComponents} from '~/sections/shared/atoms';
import * as SingleProduct from '~/sections/single-product';
import * as Judgeme from '~/components/product-form/judgeme-review';
import * as Testimonial from '~/sections/testimonials';
import * as TestimonialItem from '~/sections/testimonials/item';
import * as TestimonialItems from '~/sections/testimonials/items';
import * as VideoHero from '~/sections/video-hero';
import * as VideoEmbed from '~/sections/video-embed';
import * as VideoEmbedItem from '~/sections/video-embed/video';
import * as MetaDemo from '~/sections/meta-demo';
import * as SlideShow from '~/sections/SlideShow/SlideShow';
import * as SlideShowItem from '~/sections/SlideShow/SlideItems';
import * as NewsLetter from '~/sections/newsletter';
import * as ImageHotspot from '~/sections/image-hotspots/image-hotspot';
import * as ImageHotspotItem from '~/sections/image-hotspots/items';
import * as ProductList from '~/sections/product-list';
import * as ContactForm from '~/sections/contact-form';
import * as UserProfiles from '~/sections/user-profiles';
import * as AnnounceBar from '~/sections/announce-bar';
import * as AnnounceBarItem from '~/sections/announce-bar/items';
import * as Header from '~/sections/header';
import * as HeaderItem from '~/sections/header/menu-item';
import * as ImgWithTextButton from '~/sections/image-with-text/Button';
import * as ImageWithTextDescription from '~/sections/image-with-text/Description';
import * as ImageWithTextHeading from '~/sections/image-with-text/Heading';
import * as ImageWithTextSubheading from '~/sections/image-with-text/SubHeading';
import * as NotFound from '~/sections/404-page';
import * as ContactUs from '~/sections/contact-us';
import * as TermsPolicy from '~/sections/terms-policy';
import * as TermsPolicyItem from '~/sections/terms-policy/items';
import * as IconList from '~/sections/icon-list';
import * as IconListTitle from '~/sections/icon-list/icon-list-title';
import * as IconListContainer from '~/sections/icon-list/icon-list-container';
import * as IconListIcon from '~/sections/icon-list/icon-list-icon';
import * as VideoBanner from '~/sections/video-banner/index';
import * as VideoBannerItem from '~/sections/video-banner/items';
import * as RichText from '~/sections/rich-text';
import * as LogoList from '~/sections/logo-list';
import * as LogoListContainer from '~/sections/logo-list/logo-list-container';
import * as LogoListItem from '~/sections/logo-list/logo-list-item';
export let components: HydrogenComponent[] = [
...commonComponents,
AllProducts,
BlogPost,
Blogs,
CollectionBanner,
Page,
VideoEmbed,
VideoEmbedItem,
ImageBanner,
ImageWithText,
ImageWithTextContent,
ImageWithTextImage,
ColumnsWithImages,
ColumnsWithImagesItems,
ColumnWithImageItem,
VideoHero,
Map,
PromotionGrid,
PromotionGridItem,
PromotionGridButtons,
ImageHotspot,
ImageHotspotItem,
Countdown,
CountDownTimer,
CountdownActions,
NewsLetter,
UserProfiles,
Blogs,
BlogPost,
AllProducts,
FeaturedProducts,
FeaturedCollections,
Testimonial,
TestimonialItems,
TestimonialItem,
ImageGallery,
ImageGalleryItems,
ImageGalleryItem,
ProductInformation,
RelatedProducts,
RelatedArticles,
CollectionFilters,
CollectionList,
SingleProduct,
Judgeme,
MetaDemo,
SlideShow,
SlideShowItem,
ProductList,
ContactForm,
AnnounceBar,
AnnounceBarItem,
Header,
HeaderItem,
ImgWithTextButton,
ImageWithTextDescription,
ImageWithTextHeading,
ImageWithTextSubheading,
NotFound,
ContactUs,
TermsPolicy,
TermsPolicyItem,
IconList,
IconListTitle,
IconListContainer,
IconListIcon,
VideoBanner,
VideoBannerItem,
RichText,
LogoList,
LogoListContainer,
LogoListItem,
];