-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathcomponents.ts
More file actions
143 lines (142 loc) · 5.71 KB
/
components.ts
File metadata and controls
143 lines (142 loc) · 5.71 KB
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
import type { HydrogenComponent } from "@weaverse/hydrogen";
import * as Heading from "~/components/heading";
import * as Link from "~/components/link";
import * as Paragraph from "~/components/paragraph";
import * as SubHeading from "~/components/subheading";
import * as AllProducts from "~/sections/all-products";
import * as BlogPost from "~/sections/blog-post";
import * as Blogs from "~/sections/blogs";
import * as CollectionFilters from "~/sections/collection-filters";
import * as CollectionList from "~/sections/collection-list";
import * as CollectionListItems from "~/sections/collection-list/collections-items";
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 FeaturedCollections from "~/sections/featured-collections";
import * as FeaturedCollectionItems from "~/sections/featured-collections/collection-items";
import * as FeaturedProducts from "~/sections/featured-products";
import * as FeaturedProductItems from "~/sections/featured-products/product-items";
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 JudgemeReview from "~/sections/judgeme-reviews";
import * as JudgemeReviewList from "~/sections/judgeme-reviews/review-list";
import * as JudgemeReviewSummary from "~/sections/judgeme-reviews/review-summary";
import * as MainProduct from "~/sections/main-product";
import * as JudgemeStarsRating from "~/sections/main-product/judgeme-stars-rating";
import * as ProductATCButtons from "~/sections/main-product/product-atc-buttons";
import * as ProductBadges from "~/sections/main-product/product-badges";
import * as ProductBreadcrumb from "~/sections/main-product/product-breadcrumb";
import * as ProductBundledVariants from "~/sections/main-product/product-bundled-variants";
import * as ProductCollapsibleDetails from "~/sections/main-product/product-collapsible-details";
import * as ProductPrices from "~/sections/main-product/product-prices";
import * as ProductQuantitySelector from "~/sections/main-product/product-quantity-selector";
import * as ProductSummary from "~/sections/main-product/product-summary";
import * as ProductTitle from "~/sections/main-product/product-title";
import * as ProductVariantSelector from "~/sections/main-product/product-variant-selector";
import * as ProductVendor from "~/sections/main-product/product-vendor";
import * as ProductInfoSection from "~/sections/main-product/product-info";
import * as ProductMediaSection from "~/sections/main-product/product-media";
import * as MapSection from "~/sections/map";
import * as NewsLetter from "~/sections/newsletter";
import * as NewsLetterForm from "~/sections/newsletter/newsletter-form";
import * as OurTeam from "~/sections/our-team";
import * as OurTeamMembers from "~/sections/our-team/team-members";
import * as Page from "~/sections/page";
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 SlideShow from "~/sections/slideshow";
import * as SlideShowSlide from "~/sections/slideshow/slide";
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 VideoEmbed from "~/sections/video-embed";
import * as VideoEmbedItem from "~/sections/video-embed/video";
export const components: HydrogenComponent[] = [
SubHeading,
Heading,
Paragraph,
Link,
// AliReview,
// AliReviewList,
AllProducts,
FeaturedCollections,
FeaturedCollectionItems,
BlogPost,
Blogs,
Page,
VideoEmbed,
VideoEmbedItem,
HeroImage,
ImageWithText,
ImageWithTextContent,
ImageWithTextImage,
ColumnsWithImages,
ColumnsWithImagesItems,
ColumnWithImageItem,
HeroVideo,
MapSection,
PromotionGrid,
PromotionGridItem,
PromotionGridButtons,
Hotspots,
HotspotsItem,
Countdown,
CountDownTimer,
NewsLetter,
NewsLetterForm,
Blogs,
BlogPost,
AllProducts,
FeaturedProducts,
FeaturedProductItems,
Testimonial,
TestimonialItems,
TestimonialItem,
ImageGallery,
ImageGalleryItems,
ImageGalleryItem,
MainProduct,
ProductMediaSection,
ProductInfoSection,
ProductBreadcrumb,
ProductBadges,
ProductVendor,
ProductTitle,
ProductPrices,
ProductSummary,
ProductBundledVariants,
ProductVariantSelector,
ProductQuantitySelector,
ProductATCButtons,
ProductCollapsibleDetails,
RelatedProducts,
RelatedArticles,
CollectionFilters,
CollectionList,
CollectionListItems,
SingleProduct,
JudgemeStarsRating,
JudgemeReview,
JudgemeReviewSummary,
JudgemeReviewList,
OurTeam,
OurTeamMembers,
SlideShow,
SlideShowSlide,
Spacer,
];