generated from Weaverse/pilot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
components.ts
105 lines (104 loc) · 3.89 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
import type { HydrogenComponent } from "@weaverse/hydrogen";
import { sharedComponents } from "~/components";
import * as Judgeme from "~/modules/product-form/judgeme-review";
import * as SlideShowSlide from "~/sections/slideshow/slide";
import * as SlideShow from "~/sections/slideshow";
import * as AliReview from "~/sections/ali-reviews";
import * as AliReviewList from "~/sections/ali-reviews/review-list";
import * as AllProducts from "~/sections/all-products";
import * as BlogPost from "~/sections/blog-post";
import * as Blogs from "~/sections/blogs";
import * as FeaturedCollections from "~/sections/featured-collections";
import * as FeaturedCollectionItems from "~/sections/featured-collections/collection-items";
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 ColumnWithImageItem from "~/sections/columns-with-images/column";
import * as ColumnsWithImagesItems from "~/sections/columns-with-images/items";
import * as Countdown from "~/sections/countdown";
import * as CountDownTimer from "~/sections/countdown/timer";
import * as FeaturedProducts from "~/sections/featured-products";
import * as HeroImage from "~/sections/hero-image";
import * as HeroVideo from "~/sections/hero-video";
import * as Hotspots from "~/sections/hotspots";
import * as HotspotsItem from "~/sections/hotspots/item";
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 MetaDemo from "~/sections/meta-demo";
import * as NewsLetter from "~/sections/newsletter";
import * as Page from "~/sections/page";
import * as ProductInformation from "~/sections/product-information";
import * as ProductList from "~/sections/product-list";
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 * as SingleProduct from "~/sections/single-product";
import * as Spacer from "~/sections/spacer";
import * as Testimonial from "~/sections/testimonials";
import * as TestimonialItem from "~/sections/testimonials/item";
import * as TestimonialItems from "~/sections/testimonials/items";
import * as UserProfiles from "~/sections/user-profiles";
import * as VideoEmbed from "~/sections/video-embed";
import * as VideoEmbedItem from "~/sections/video-embed/video";
export let components: HydrogenComponent[] = [
...sharedComponents,
AliReview,
AliReviewList,
AllProducts,
FeaturedCollections,
FeaturedCollectionItems,
BlogPost,
Blogs,
CollectionBanner,
Page,
VideoEmbed,
VideoEmbedItem,
HeroImage,
ImageWithText,
ImageWithTextContent,
ImageWithTextImage,
ColumnsWithImages,
ColumnsWithImagesItems,
ColumnWithImageItem,
HeroVideo,
Map,
PromotionGrid,
PromotionGridItem,
PromotionGridButtons,
Hotspots,
HotspotsItem,
Countdown,
CountDownTimer,
NewsLetter,
UserProfiles,
Blogs,
BlogPost,
AllProducts,
FeaturedProducts,
Testimonial,
TestimonialItems,
TestimonialItem,
ImageGallery,
ImageGalleryItems,
ImageGalleryItem,
ProductInformation,
RelatedProducts,
RelatedArticles,
CollectionFilters,
CollectionList,
SingleProduct,
Judgeme,
MetaDemo,
SlideShow,
SlideShowSlide,
ProductList,
Spacer,
];