@mohasinac/appkit 2.3.2 → 2.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +48 -12
- package/dist/client.js +25 -6
- package/dist/constants/api-endpoints.d.ts +380 -22
- package/dist/constants/api-endpoints.js +66 -13
- package/dist/constants/index.d.ts +1 -1
- package/dist/constants/index.js +1 -1
- package/dist/core/hooks/useSyncManager.d.ts +1 -0
- package/dist/core/hooks/useSyncManager.js +83 -0
- package/dist/core/integration-keys.d.ts +4 -0
- package/dist/core/integration-keys.js +8 -0
- package/dist/features/about/components/FAQPageView.js +9 -11
- package/dist/features/about/components/PolicyPageView.js +32 -11
- package/dist/features/about/components/PublicProfileView.js +77 -11
- package/dist/features/account/components/AddressesIndexListing.js +63 -38
- package/dist/features/account/components/UserOffersPanel.d.ts +8 -0
- package/dist/features/account/components/UserOffersPanel.js +81 -0
- package/dist/features/account/components/UserSettingsView.d.ts +2 -1
- package/dist/features/account/components/UserSettingsView.js +2 -1
- package/dist/features/account/components/UserSidebar.d.ts +6 -1
- package/dist/features/account/components/UserSidebar.js +48 -42
- package/dist/features/account/components/index.d.ts +2 -0
- package/dist/features/account/components/index.js +1 -0
- package/dist/features/admin/actions/admin-actions.d.ts +1 -1
- package/dist/features/admin/actions/admin-actions.js +13 -3
- package/dist/features/admin/components/AdminAdEditorView.js +6 -7
- package/dist/features/admin/components/AdminAllEventEntriesView.d.ts +4 -0
- package/dist/features/admin/components/AdminAllEventEntriesView.js +102 -0
- package/dist/features/admin/components/AdminBidsView.js +94 -8
- package/dist/features/admin/components/AdminBlogEditorView.d.ts +7 -0
- package/dist/features/admin/components/AdminBlogEditorView.js +162 -0
- package/dist/features/admin/components/AdminBlogView.d.ts +4 -1
- package/dist/features/admin/components/AdminBlogView.js +61 -31
- package/dist/features/admin/components/AdminBrandEditorView.d.ts +7 -0
- package/dist/features/admin/components/AdminBrandEditorView.js +104 -0
- package/dist/features/admin/components/AdminBrandsView.d.ts +4 -0
- package/dist/features/admin/components/AdminBrandsView.js +76 -0
- package/dist/features/admin/components/AdminCarouselEditorView.d.ts +8 -0
- package/dist/features/admin/components/AdminCarouselEditorView.js +204 -0
- package/dist/features/admin/components/AdminCarouselView.js +153 -34
- package/dist/features/admin/components/AdminCartsView.d.ts +4 -0
- package/dist/features/admin/components/AdminCartsView.js +82 -0
- package/dist/features/admin/components/AdminCategoriesView.d.ts +4 -1
- package/dist/features/admin/components/AdminCategoriesView.js +66 -48
- package/dist/features/admin/components/AdminCategoryEditorView.d.ts +7 -0
- package/dist/features/admin/components/AdminCategoryEditorView.js +115 -0
- package/dist/features/admin/components/AdminContactEditorView.d.ts +11 -0
- package/dist/features/admin/components/AdminContactEditorView.js +32 -0
- package/dist/features/admin/components/AdminContactView.js +111 -20
- package/dist/features/admin/components/AdminCouponEditorView.d.ts +7 -0
- package/dist/features/admin/components/AdminCouponEditorView.js +179 -0
- package/dist/features/admin/components/AdminCouponsView.d.ts +4 -1
- package/dist/features/admin/components/AdminCouponsView.js +57 -9
- package/dist/features/admin/components/AdminDashboardView.js +3 -0
- package/dist/features/admin/components/AdminFaqEditorView.d.ts +7 -0
- package/dist/features/admin/components/AdminFaqEditorView.js +128 -0
- package/dist/features/admin/components/AdminFaqsView.d.ts +4 -1
- package/dist/features/admin/components/AdminFaqsView.js +55 -23
- package/dist/features/admin/components/AdminFeatureFlagsView.js +33 -24
- package/dist/features/admin/components/AdminListingScaffold.d.ts +7 -1
- package/dist/features/admin/components/AdminListingScaffold.js +2 -2
- package/dist/features/admin/components/AdminMediaView.js +18 -8
- package/dist/features/admin/components/AdminNavEditorView.d.ts +20 -0
- package/dist/features/admin/components/AdminNavEditorView.js +84 -0
- package/dist/features/admin/components/AdminNavigationView.d.ts +1 -7
- package/dist/features/admin/components/AdminNavigationView.js +84 -72
- package/dist/features/admin/components/AdminNewsletterView.js +102 -20
- package/dist/features/admin/components/AdminNotificationsView.d.ts +4 -0
- package/dist/features/admin/components/AdminNotificationsView.js +119 -0
- package/dist/features/admin/components/AdminOrderEditorView.d.ts +8 -0
- package/dist/features/admin/components/AdminOrderEditorView.js +74 -0
- package/dist/features/admin/components/AdminOrdersView.js +64 -8
- package/dist/features/admin/components/AdminPayoutsView.js +122 -13
- package/dist/features/admin/components/AdminProductEditorView.d.ts +7 -0
- package/dist/features/admin/components/AdminProductEditorView.js +143 -0
- package/dist/features/admin/components/AdminProductsView.d.ts +4 -1
- package/dist/features/admin/components/AdminProductsView.js +119 -30
- package/dist/features/admin/components/AdminReturnRequestsView.d.ts +5 -0
- package/dist/features/admin/components/AdminReturnRequestsView.js +101 -0
- package/dist/features/admin/components/AdminReviewsView.js +138 -28
- package/dist/features/admin/components/AdminSectionsView.js +361 -472
- package/dist/features/admin/components/AdminSessionsView.d.ts +4 -0
- package/dist/features/admin/components/AdminSessionsView.js +119 -0
- package/dist/features/admin/components/AdminSidebar.d.ts +18 -3
- package/dist/features/admin/components/AdminSidebar.js +51 -4
- package/dist/features/admin/components/AdminSiteSettingsView.d.ts +7 -0
- package/dist/features/admin/components/AdminSiteSettingsView.js +319 -0
- package/dist/features/admin/components/AdminStoreAddressesView.d.ts +5 -0
- package/dist/features/admin/components/AdminStoreAddressesView.js +52 -0
- package/dist/features/admin/components/AdminStoreEditorView.d.ts +9 -0
- package/dist/features/admin/components/AdminStoreEditorView.js +55 -0
- package/dist/features/admin/components/AdminStoresView.js +62 -20
- package/dist/features/admin/components/AdminUserEditorView.d.ts +10 -0
- package/dist/features/admin/components/AdminUserEditorView.js +72 -0
- package/dist/features/admin/components/AdminUsersView.js +70 -36
- package/dist/features/admin/components/AdminWishlistsView.d.ts +4 -0
- package/dist/features/admin/components/AdminWishlistsView.js +53 -0
- package/dist/features/admin/components/BrandQuickCreateForm.d.ts +5 -0
- package/dist/features/admin/components/BrandQuickCreateForm.js +36 -0
- package/dist/features/admin/components/CategoryQuickCreateForm.d.ts +5 -0
- package/dist/features/admin/components/CategoryQuickCreateForm.js +35 -0
- package/dist/features/admin/components/DataTable.d.ts +4 -2
- package/dist/features/admin/components/DataTable.js +26 -6
- package/dist/features/admin/components/index.d.ts +47 -1
- package/dist/features/admin/components/index.js +23 -0
- package/dist/features/admin/components/sections/adminSectionsBuildParse.d.ts +48 -0
- package/dist/features/admin/components/sections/adminSectionsBuildParse.js +653 -0
- package/dist/features/admin/components/sections/adminSectionsTypes.d.ts +298 -0
- package/dist/features/admin/components/sections/adminSectionsTypes.js +278 -0
- package/dist/features/admin/schemas/firestore.d.ts +26 -0
- package/dist/features/admin/schemas/firestore.js +1 -0
- package/dist/features/admin/types/product.types.d.ts +2 -3
- package/dist/features/auctions/actions/bid-actions.js +6 -2
- package/dist/features/auctions/components/AuctionDetailPageView.d.ts +3 -1
- package/dist/features/auctions/components/AuctionDetailPageView.js +38 -12
- package/dist/features/auctions/components/AuctionFilters.d.ts +3 -1
- package/dist/features/auctions/components/AuctionFilters.js +6 -2
- package/dist/features/auctions/components/CollapsibleBidHistory.d.ts +7 -0
- package/dist/features/auctions/components/CollapsibleBidHistory.js +8 -0
- package/dist/features/auctions/components/MarketplaceAuctionCard.d.ts +4 -0
- package/dist/features/auctions/components/MarketplaceAuctionCard.js +43 -9
- package/dist/features/auctions/components/MarketplaceAuctionGrid.js +1 -0
- package/dist/features/auctions/components/PlaceBidFormClient.d.ts +18 -0
- package/dist/features/auctions/components/PlaceBidFormClient.js +33 -0
- package/dist/features/auctions/hooks/useAuctions.d.ts +1 -0
- package/dist/features/auctions/hooks/useAuctions.js +1 -0
- package/dist/features/auctions/schemas/index.d.ts +22 -12
- package/dist/features/auth/actions/profile-actions.d.ts +5 -3
- package/dist/features/auth/actions/profile-actions.js +30 -11
- package/dist/features/auth/auth-helpers.js +1 -0
- package/dist/features/auth/components/LoginForm.js +2 -1
- package/dist/features/auth/hooks/useAuth.js +16 -4
- package/dist/features/auth/permissions/constants.d.ts +63 -0
- package/dist/features/auth/permissions/constants.js +323 -0
- package/dist/features/auth/schemas/firestore.d.ts +20 -0
- package/dist/features/auth/schemas/index.d.ts +4 -4
- package/dist/features/auth/schemas/index.js +3 -2
- package/dist/features/auth/types/index.d.ts +1 -1
- package/dist/features/before-after/schemas/index.d.ts +2 -2
- package/dist/features/blog/actions/blog-actions.d.ts +15 -15
- package/dist/features/blog/components/BlogFilters.js +1 -1
- package/dist/features/blog/components/BlogIndexListing.js +57 -5
- package/dist/features/blog/components/BlogIndexPageView.js +14 -2
- package/dist/features/blog/components/BlogPostForm.js +6 -2
- package/dist/features/blog/components/BlogPostView.js +2 -1
- package/dist/features/blog/hooks/useBlog.d.ts +2 -0
- package/dist/features/blog/hooks/useBlog.js +2 -0
- package/dist/features/blog/schemas/index.d.ts +46 -12
- package/dist/features/brands/actions/brand-actions.d.ts +2 -0
- package/dist/features/brands/actions/brand-actions.js +5 -0
- package/dist/features/brands/index.d.ts +3 -0
- package/dist/features/brands/index.js +3 -0
- package/dist/features/brands/repository/brands.repository.d.ts +13 -0
- package/dist/features/brands/repository/brands.repository.js +60 -0
- package/dist/features/brands/schemas/index.d.ts +33 -0
- package/dist/features/brands/schemas/index.js +15 -0
- package/dist/features/brands/server.d.ts +7 -0
- package/dist/features/brands/server.js +7 -0
- package/dist/features/cart/actions/cart-actions.js +2 -2
- package/dist/features/cart/components/CartDrawer.d.ts +5 -1
- package/dist/features/cart/components/CartDrawer.js +3 -3
- package/dist/features/cart/hooks/useCartCount.d.ts +3 -2
- package/dist/features/cart/hooks/useCartCount.js +4 -2
- package/dist/features/cart/hooks/useGuestCartMerge.js +1 -1
- package/dist/features/cart/index.d.ts +1 -0
- package/dist/features/cart/index.js +1 -0
- package/dist/features/cart/repository/cart.repository.d.ts +5 -1
- package/dist/features/cart/repository/cart.repository.js +36 -5
- package/dist/features/cart/schemas/firestore.d.ts +25 -6
- package/dist/features/cart/schemas/firestore.js +2 -2
- package/dist/features/cart/schemas/index.d.ts +9 -9
- package/dist/features/cart/schemas/index.js +1 -1
- package/dist/features/cart/types/index.d.ts +1 -1
- package/dist/features/cart/utils/pending-ops.d.ts +33 -0
- package/dist/features/cart/utils/pending-ops.js +102 -0
- package/dist/features/categories/components/BrandDetailPageView.d.ts +4 -0
- package/dist/features/categories/components/BrandDetailPageView.js +54 -0
- package/dist/features/categories/components/BrandDetailTabs.d.ts +10 -0
- package/dist/features/categories/components/BrandDetailTabs.js +22 -0
- package/dist/features/categories/components/CategoriesIndexListing.d.ts +3 -1
- package/dist/features/categories/components/CategoriesIndexListing.js +83 -7
- package/dist/features/categories/components/CategoryDetailPageView.js +42 -21
- package/dist/features/categories/components/CategoryDetailTabs.d.ts +7 -1
- package/dist/features/categories/components/CategoryDetailTabs.js +12 -7
- package/dist/features/categories/components/CategoryFilters.js +1 -1
- package/dist/features/categories/components/CategoryForm.js +10 -4
- package/dist/features/categories/components/CategoryProductsListing.d.ts +4 -1
- package/dist/features/categories/components/CategoryProductsListing.js +34 -5
- package/dist/features/categories/components/ConcernCard.js +1 -1
- package/dist/features/categories/hooks/useCategories.js +2 -0
- package/dist/features/categories/repository/categories.repository.js +2 -3
- package/dist/features/categories/schemas/firestore.d.ts +23 -2
- package/dist/features/categories/schemas/firestore.js +8 -0
- package/dist/features/categories/schemas/index.d.ts +8 -8
- package/dist/features/categories/types/index.d.ts +1 -0
- package/dist/features/collections/schemas/index.d.ts +2 -2
- package/dist/features/events/components/AdminEventEditorView.js +2 -2
- package/dist/features/events/components/AdminEventsView.d.ts +4 -1
- package/dist/features/events/components/AdminEventsView.js +64 -38
- package/dist/features/events/components/EventCard.js +1 -1
- package/dist/features/events/components/EventFilters.js +1 -1
- package/dist/features/events/components/EventPollWidget.d.ts +12 -0
- package/dist/features/events/components/EventPollWidget.js +62 -0
- package/dist/features/events/components/EventsIndexListing.js +57 -5
- package/dist/features/events/components/EventsListPageView.js +1 -1
- package/dist/features/events/components/index.d.ts +2 -0
- package/dist/features/events/components/index.js +1 -0
- package/dist/features/events/hooks/useEvents.d.ts +1 -0
- package/dist/features/events/hooks/useEvents.js +1 -0
- package/dist/features/events/repository/events.repository.js +3 -0
- package/dist/features/events/schemas/firestore.d.ts +1 -0
- package/dist/features/events/schemas/index.d.ts +44 -0
- package/dist/features/events/types/index.d.ts +2 -0
- package/dist/features/faq/actions/faq-actions.d.ts +16 -16
- package/dist/features/faq/hooks/useFaqList.js +1 -1
- package/dist/features/faq/schemas/firestore.d.ts +2 -2
- package/dist/features/faq/schemas/firestore.js +2 -1
- package/dist/features/faq/schemas/index.d.ts +4 -4
- package/dist/features/filters/FilterFacetSection.d.ts +1 -0
- package/dist/features/filters/FilterFacetSection.js +13 -1
- package/dist/features/filters/SwitchFilter.js +1 -1
- package/dist/features/grouped/schemas/firestore.d.ts +32 -0
- package/dist/features/grouped/schemas/firestore.js +19 -0
- package/dist/features/homepage/components/AdSlot.d.ts +1 -3
- package/dist/features/homepage/components/AdSlot.js +15 -14
- package/dist/features/homepage/components/BlogArticlesSection.d.ts +3 -1
- package/dist/features/homepage/components/BlogArticlesSection.js +2 -2
- package/dist/features/homepage/components/BrandsSection.d.ts +3 -1
- package/dist/features/homepage/components/BrandsSection.js +4 -3
- package/dist/features/homepage/components/CustomCardsSection.d.ts +3 -0
- package/dist/features/homepage/components/CustomCardsSection.js +76 -0
- package/dist/features/homepage/components/EventsSection.d.ts +3 -1
- package/dist/features/homepage/components/EventsSection.js +2 -2
- package/dist/features/homepage/components/FeaturedAuctionsSection.d.ts +4 -1
- package/dist/features/homepage/components/FeaturedAuctionsSection.js +2 -2
- package/dist/features/homepage/components/FeaturedPreOrdersSection.d.ts +4 -1
- package/dist/features/homepage/components/FeaturedPreOrdersSection.js +2 -2
- package/dist/features/homepage/components/FeaturedProductsSection.d.ts +4 -1
- package/dist/features/homepage/components/FeaturedProductsSection.js +8 -3
- package/dist/features/homepage/components/FeaturedStoresSection.d.ts +3 -1
- package/dist/features/homepage/components/FeaturedStoresSection.js +2 -2
- package/dist/features/homepage/components/GoogleReviewsSection.d.ts +3 -0
- package/dist/features/homepage/components/GoogleReviewsSection.js +65 -0
- package/dist/features/homepage/components/HeroCarousel.js +128 -84
- package/dist/features/homepage/components/MarketplaceHomepageView.d.ts +2 -20
- package/dist/features/homepage/components/MarketplaceHomepageView.js +73 -230
- package/dist/features/homepage/components/SectionCarousel.d.ts +1 -1
- package/dist/features/homepage/components/SectionCarousel.js +2 -0
- package/dist/features/homepage/components/ShopByCategorySection.d.ts +3 -1
- package/dist/features/homepage/components/ShopByCategorySection.js +8 -4
- package/dist/features/homepage/components/SocialFeedSection.d.ts +3 -0
- package/dist/features/homepage/components/SocialFeedSection.js +86 -0
- package/dist/features/homepage/components/SocialPostCard.d.ts +7 -0
- package/dist/features/homepage/components/SocialPostCard.js +39 -0
- package/dist/features/homepage/components/StatsCounterSection.js +1 -1
- package/dist/features/homepage/components/WelcomeSection.js +1 -1
- package/dist/features/homepage/components/WhatsAppCommunitySection.js +1 -1
- package/dist/features/homepage/hooks/useActiveAd.d.ts +23 -0
- package/dist/features/homepage/hooks/useActiveAd.js +20 -0
- package/dist/features/homepage/hooks/useBlogArticles.d.ts +1 -0
- package/dist/features/homepage/hooks/useBlogArticles.js +10 -0
- package/dist/features/homepage/hooks/useFeaturedAuctions.d.ts +4 -1
- package/dist/features/homepage/hooks/useFeaturedAuctions.js +8 -4
- package/dist/features/homepage/hooks/useFeaturedPreOrders.d.ts +4 -1
- package/dist/features/homepage/hooks/useFeaturedPreOrders.js +8 -4
- package/dist/features/homepage/hooks/useFeaturedProducts.d.ts +1 -0
- package/dist/features/homepage/hooks/useFeaturedProducts.js +6 -3
- package/dist/features/homepage/hooks/useFeaturedStores.d.ts +3 -1
- package/dist/features/homepage/hooks/useFeaturedStores.js +2 -1
- package/dist/features/homepage/hooks/useHomepageEvents.d.ts +3 -1
- package/dist/features/homepage/hooks/useHomepageEvents.js +2 -1
- package/dist/features/homepage/hooks/useTopBrands.d.ts +3 -1
- package/dist/features/homepage/hooks/useTopBrands.js +2 -1
- package/dist/features/homepage/index.d.ts +2 -0
- package/dist/features/homepage/index.js +1 -0
- package/dist/features/homepage/lib/google-reviews-fetcher.d.ts +14 -0
- package/dist/features/homepage/lib/google-reviews-fetcher.js +27 -0
- package/dist/features/homepage/lib/live-stats.d.ts +14 -0
- package/dist/features/homepage/lib/live-stats.js +62 -0
- package/dist/features/homepage/lib/section-defaults.d.ts +11 -0
- package/dist/features/homepage/lib/section-defaults.js +45 -0
- package/dist/features/homepage/lib/section-helpers.d.ts +5 -0
- package/dist/features/homepage/lib/section-helpers.js +25 -0
- package/dist/features/homepage/lib/section-renderer.d.ts +33 -0
- package/dist/features/homepage/lib/section-renderer.js +164 -0
- package/dist/features/homepage/lib/social-feed-fetcher.d.ts +5 -0
- package/dist/features/homepage/lib/social-feed-fetcher.js +193 -0
- package/dist/features/homepage/schemas/firestore.d.ts +180 -29
- package/dist/features/homepage/schemas/firestore.js +5 -0
- package/dist/features/homepage/types/index.d.ts +48 -19
- package/dist/features/layout/AppLayoutShell.d.ts +6 -1
- package/dist/features/layout/AppLayoutShell.js +25 -9
- package/dist/features/layout/BottomActions.js +1 -1
- package/dist/features/layout/BottomNavbar.d.ts +15 -1
- package/dist/features/layout/BottomNavbar.js +8 -2
- package/dist/features/layout/FooterLayout.d.ts +7 -1
- package/dist/features/layout/FooterLayout.js +3 -3
- package/dist/features/layout/ListingLayout.js +2 -2
- package/dist/features/layout/MainNavbar.d.ts +6 -14
- package/dist/features/layout/MainNavbar.js +4 -16
- package/dist/features/layout/NavItem.js +1 -1
- package/dist/features/layout/NavbarLayout.d.ts +3 -1
- package/dist/features/layout/NavbarLayout.js +5 -5
- package/dist/features/layout/TitleBar.d.ts +4 -2
- package/dist/features/layout/TitleBar.js +5 -3
- package/dist/features/layout/TitleBarLayout.d.ts +3 -1
- package/dist/features/layout/TitleBarLayout.js +2 -2
- package/dist/features/layout/index.d.ts +1 -1
- package/dist/features/media/MediaPickerModal.d.ts +30 -0
- package/dist/features/media/MediaPickerModal.js +72 -0
- package/dist/features/media/index.d.ts +3 -1
- package/dist/features/media/index.js +1 -0
- package/dist/features/media/types/index.d.ts +12 -0
- package/dist/features/media/types/index.js +4 -2
- package/dist/features/media/upload/MediaUploadField.d.ts +5 -1
- package/dist/features/media/upload/MediaUploadField.js +56 -3
- package/dist/features/messages/schemas/firestore.d.ts +36 -0
- package/dist/features/messages/schemas/firestore.js +16 -0
- package/dist/features/orders/repository/orders.repository.d.ts +2 -2
- package/dist/features/orders/repository/orders.repository.js +2 -2
- package/dist/features/orders/schemas/firestore.d.ts +17 -4
- package/dist/features/orders/schemas/firestore.js +2 -2
- package/dist/features/orders/schemas/index.d.ts +18 -18
- package/dist/features/orders/schemas/index.js +3 -3
- package/dist/features/orders/types/index.d.ts +1 -1
- package/dist/features/orders/utils/order-splitter.d.ts +1 -1
- package/dist/features/orders/utils/order-splitter.js +2 -2
- package/dist/features/payments/repository/payout.repository.d.ts +4 -4
- package/dist/features/payments/repository/payout.repository.js +7 -7
- package/dist/features/payments/schemas/firestore.d.ts +6 -6
- package/dist/features/payments/schemas/firestore.js +6 -6
- package/dist/features/pre-orders/components/MarketplacePreorderCard.js +11 -10
- package/dist/features/pre-orders/components/PreOrderActionsClient.d.ts +11 -0
- package/dist/features/pre-orders/components/PreOrderActionsClient.js +28 -0
- package/dist/features/pre-orders/components/PreOrderDetailPageView.d.ts +2 -1
- package/dist/features/pre-orders/components/PreOrderDetailPageView.js +27 -9
- package/dist/features/pre-orders/components/PreOrderFilters.d.ts +3 -1
- package/dist/features/pre-orders/components/PreOrderFilters.js +9 -6
- package/dist/features/pre-orders/components/PreOrdersIndexListing.d.ts +3 -1
- package/dist/features/pre-orders/components/PreOrdersIndexListing.js +132 -36
- package/dist/features/pre-orders/components/PreOrdersListView.js +3 -3
- package/dist/features/pre-orders/components/PreorderCard.js +1 -1
- package/dist/features/pre-orders/schemas/index.d.ts +10 -0
- package/dist/features/products/actions/product-actions.d.ts +2 -2
- package/dist/features/products/actions/product-actions.js +5 -5
- package/dist/features/products/api/[id]/route.js +5 -2
- package/dist/features/products/api/route.js +10 -14
- package/dist/features/products/columns/productTableColumns.js +2 -2
- package/dist/features/products/components/AuctionDetailView.d.ts +2 -1
- package/dist/features/products/components/AuctionDetailView.js +2 -2
- package/dist/features/products/components/AuctionsIndexListing.d.ts +3 -1
- package/dist/features/products/components/AuctionsIndexListing.js +93 -31
- package/dist/features/products/components/BidHistory.d.ts +2 -1
- package/dist/features/products/components/BidHistory.js +18 -2
- package/dist/features/products/components/MakeOfferButton.d.ts +10 -0
- package/dist/features/products/components/MakeOfferButton.js +68 -0
- package/dist/features/products/components/ProductDetailPageView.d.ts +11 -1
- package/dist/features/products/components/ProductDetailPageView.js +27 -8
- package/dist/features/products/components/ProductFilters.d.ts +7 -1
- package/dist/features/products/components/ProductFilters.js +4 -2
- package/dist/features/products/components/ProductForm.d.ts +19 -1
- package/dist/features/products/components/ProductForm.js +24 -6
- package/dist/features/products/components/ProductGrid.d.ts +10 -2
- package/dist/features/products/components/ProductGrid.js +76 -29
- package/dist/features/products/components/ProductsIndexListing.js +131 -45
- package/dist/features/products/components/RelatedProductsCarousel.js +1 -1
- package/dist/features/products/components/ShareButton.d.ts +7 -0
- package/dist/features/products/components/ShareButton.js +22 -0
- package/dist/features/products/components/index.d.ts +2 -0
- package/dist/features/products/components/index.js +1 -0
- package/dist/features/products/hooks/useProducts.d.ts +7 -0
- package/dist/features/products/hooks/useProducts.js +6 -4
- package/dist/features/products/repository/products.repository.d.ts +4 -8
- package/dist/features/products/repository/products.repository.js +17 -50
- package/dist/features/products/schemas/firestore.d.ts +11 -9
- package/dist/features/products/schemas/firestore.js +11 -3
- package/dist/features/products/schemas/index.d.ts +51 -50
- package/dist/features/products/schemas/index.js +2 -5
- package/dist/features/products/types/index.d.ts +13 -5
- package/dist/features/promotions/actions/coupon-actions.d.ts +2 -2
- package/dist/features/promotions/actions/coupon-actions.js +1 -1
- package/dist/features/promotions/actions/seller-coupon-actions.js +11 -6
- package/dist/features/promotions/api/route.js +3 -3
- package/dist/features/promotions/components/CouponCard.js +16 -7
- package/dist/features/promotions/components/CouponsIndexListing.js +3 -9
- package/dist/features/promotions/hooks/useCouponValidate.d.ts +1 -1
- package/dist/features/promotions/hooks/usePromotions.js +2 -2
- package/dist/features/promotions/repository/coupons.repository.d.ts +21 -15
- package/dist/features/promotions/repository/coupons.repository.js +97 -125
- package/dist/features/promotions/schemas/firestore.d.ts +31 -2
- package/dist/features/promotions/schemas/firestore.js +29 -0
- package/dist/features/promotions/schemas/index.d.ts +9 -12
- package/dist/features/promotions/schemas/index.js +1 -2
- package/dist/features/promotions/types/index.d.ts +1 -2
- package/dist/features/reviews/actions/review-actions.js +3 -2
- package/dist/features/reviews/components/ReviewDetailPageView.js +5 -9
- package/dist/features/reviews/components/ReviewFilters.js +1 -1
- package/dist/features/reviews/components/ReviewsIndexListing.js +58 -7
- package/dist/features/reviews/components/ReviewsList.js +2 -2
- package/dist/features/reviews/hooks/useReviews.d.ts +1 -0
- package/dist/features/reviews/hooks/useReviews.js +2 -1
- package/dist/features/reviews/repository/reviews.repository.d.ts +9 -4
- package/dist/features/reviews/repository/reviews.repository.js +18 -7
- package/dist/features/reviews/schemas/firestore.d.ts +5 -2
- package/dist/features/reviews/schemas/firestore.js +1 -0
- package/dist/features/reviews/schemas/index.d.ts +19 -16
- package/dist/features/reviews/schemas/index.js +3 -2
- package/dist/features/reviews/types/index.d.ts +3 -2
- package/dist/features/scams/actions/scam-actions.d.ts +29 -0
- package/dist/features/scams/actions/scam-actions.js +62 -0
- package/dist/features/scams/components/ScamProfileView.d.ts +10 -0
- package/dist/features/scams/components/ScamProfileView.js +51 -0
- package/dist/features/scams/components/ScamRegistryView.d.ts +6 -0
- package/dist/features/scams/components/ScamRegistryView.js +41 -0
- package/dist/features/scams/components/index.d.ts +4 -0
- package/dist/features/scams/components/index.js +2 -0
- package/dist/features/scams/constants/scam-types.d.ts +38 -0
- package/dist/features/scams/constants/scam-types.js +443 -0
- package/dist/features/scams/repository/scammer.repository.d.ts +67 -0
- package/dist/features/scams/repository/scammer.repository.js +160 -0
- package/dist/features/scams/schemas/firestore.d.ts +362 -0
- package/dist/features/scams/schemas/firestore.js +233 -0
- package/dist/features/search/components/Search.d.ts +12 -2
- package/dist/features/search/components/Search.js +26 -7
- package/dist/features/search/components/index.d.ts +1 -1
- package/dist/features/search/hooks/useNavSuggestions.d.ts +1 -1
- package/dist/features/search/hooks/useNavSuggestions.js +2 -2
- package/dist/features/search/schemas/index.d.ts +7 -7
- package/dist/features/seller/actions/offer-actions.js +52 -36
- package/dist/features/seller/actions/seller-actions.js +19 -13
- package/dist/features/seller/api/products/route.js +9 -4
- package/dist/features/seller/components/SellerAddressesView.d.ts +3 -12
- package/dist/features/seller/components/SellerAddressesView.js +144 -4
- package/dist/features/seller/components/SellerAuctionsView.js +58 -5
- package/dist/features/seller/components/SellerBidsView.d.ts +4 -0
- package/dist/features/seller/components/SellerBidsView.js +131 -0
- package/dist/features/seller/components/SellerCouponEditorView.d.ts +19 -0
- package/dist/features/seller/components/SellerCouponEditorView.js +67 -0
- package/dist/features/seller/components/SellerCouponsView.d.ts +5 -3
- package/dist/features/seller/components/SellerCouponsView.js +135 -13
- package/dist/features/seller/components/SellerCreateProductView.d.ts +4 -10
- package/dist/features/seller/components/SellerCreateProductView.js +4 -3
- package/dist/features/seller/components/SellerEditProductView.d.ts +4 -10
- package/dist/features/seller/components/SellerEditProductView.js +4 -3
- package/dist/features/seller/components/SellerOffersPanel.d.ts +20 -0
- package/dist/features/seller/components/SellerOffersPanel.js +138 -0
- package/dist/features/seller/components/SellerOffersView.js +56 -5
- package/dist/features/seller/components/SellerOrdersView.d.ts +2 -1
- package/dist/features/seller/components/SellerOrdersView.js +185 -16
- package/dist/features/seller/components/SellerPayoutRequestView.d.ts +7 -0
- package/dist/features/seller/components/SellerPayoutRequestView.js +63 -0
- package/dist/features/seller/components/SellerPayoutSettingsView.d.ts +3 -10
- package/dist/features/seller/components/SellerPayoutSettingsView.js +89 -3
- package/dist/features/seller/components/SellerPayoutsView.js +56 -5
- package/dist/features/seller/components/SellerProductShell.d.ts +68 -0
- package/dist/features/seller/components/SellerProductShell.js +179 -0
- package/dist/features/seller/components/SellerProductsView.d.ts +2 -3
- package/dist/features/seller/components/SellerProductsView.js +194 -18
- package/dist/features/seller/components/SellerReviewsView.d.ts +5 -0
- package/dist/features/seller/components/SellerReviewsView.js +100 -0
- package/dist/features/seller/components/SellerShippingView.d.ts +3 -11
- package/dist/features/seller/components/SellerShippingView.js +87 -3
- package/dist/features/seller/components/SellerSidebar.d.ts +11 -3
- package/dist/features/seller/components/SellerSidebar.js +52 -8
- package/dist/features/seller/components/SellerStorefrontView.d.ts +26 -11
- package/dist/features/seller/components/SellerStorefrontView.js +45 -7
- package/dist/features/seller/components/index.d.ts +16 -2
- package/dist/features/seller/components/index.js +7 -0
- package/dist/features/seller/hooks/useSellerListingData.d.ts +3 -1
- package/dist/features/seller/hooks/useSellerListingData.js +6 -4
- package/dist/features/seller/repository/offer.repository.d.ts +3 -3
- package/dist/features/seller/repository/offer.repository.js +6 -6
- package/dist/features/seller/schemas/firestore.d.ts +7 -7
- package/dist/features/seller/schemas/firestore.js +4 -4
- package/dist/features/seller/schemas/index.d.ts +16 -16
- package/dist/features/shell/FormShell.d.ts +29 -0
- package/dist/features/shell/FormShell.js +103 -0
- package/dist/features/shell/QuickFormDrawer.d.ts +29 -0
- package/dist/features/shell/QuickFormDrawer.js +117 -0
- package/dist/features/shell/StepForm.d.ts +44 -0
- package/dist/features/shell/StepForm.js +81 -0
- package/dist/features/shell/index.d.ts +6 -0
- package/dist/features/shell/index.js +3 -0
- package/dist/features/stores/actions/store-query-actions.js +3 -3
- package/dist/features/stores/api/[storeSlug]/auctions/route.js +1 -1
- package/dist/features/stores/api/[storeSlug]/products/route.js +1 -1
- package/dist/features/stores/api/[storeSlug]/reviews/route.js +1 -1
- package/dist/features/stores/components/InteractiveStoreCard.d.ts +2 -2
- package/dist/features/stores/components/InteractiveStoreCard.js +21 -7
- package/dist/features/stores/components/StoreAboutView.js +1 -1
- package/dist/features/stores/components/StoreAuctionsListing.d.ts +5 -2
- package/dist/features/stores/components/StoreAuctionsListing.js +81 -8
- package/dist/features/stores/components/StoreAuctionsPageView.js +8 -7
- package/dist/features/stores/components/StoreDetailLayoutView.d.ts +1 -0
- package/dist/features/stores/components/StoreDetailLayoutView.js +29 -5
- package/dist/features/stores/components/StoreHeader.js +2 -1
- package/dist/features/stores/components/StorePreOrdersListing.d.ts +4 -2
- package/dist/features/stores/components/StorePreOrdersListing.js +59 -7
- package/dist/features/stores/components/StorePreOrdersPageView.js +8 -7
- package/dist/features/stores/components/StoreProductsListing.d.ts +5 -2
- package/dist/features/stores/components/StoreProductsListing.js +97 -8
- package/dist/features/stores/components/StoreProductsPageView.js +8 -7
- package/dist/features/stores/components/StoreReviewsListing.js +2 -2
- package/dist/features/stores/components/StoresIndexListing.js +74 -11
- package/dist/features/stores/components/StoresListView.js +1 -1
- package/dist/features/stores/hooks/useStores.d.ts +1 -0
- package/dist/features/stores/hooks/useStores.js +1 -0
- package/dist/features/stores/schemas/firestore.d.ts +34 -0
- package/dist/features/stores/schemas/index.d.ts +8 -8
- package/dist/features/sublisting/schemas/firestore.d.ts +30 -0
- package/dist/features/sublisting/schemas/firestore.js +19 -0
- package/dist/features/support/schemas/firestore.d.ts +113 -0
- package/dist/features/support/schemas/firestore.js +95 -0
- package/dist/features/whatsapp-bot/components/SellerWhatsAppSettingsView.d.ts +5 -0
- package/dist/features/whatsapp-bot/components/SellerWhatsAppSettingsView.js +143 -0
- package/dist/features/whatsapp-bot/components/index.d.ts +2 -0
- package/dist/features/whatsapp-bot/components/index.js +1 -0
- package/dist/features/whatsapp-bot/helpers/whatsapp.d.ts +23 -1
- package/dist/features/whatsapp-bot/helpers/whatsapp.js +104 -0
- package/dist/features/whatsapp-bot/server.d.ts +1 -0
- package/dist/features/whatsapp-bot/server.js +1 -0
- package/dist/features/whatsapp-bot/types/index.d.ts +49 -0
- package/dist/features/wishlist/components/WishlistView.d.ts +0 -10
- package/dist/features/wishlist/components/WishlistView.js +13 -6
- package/dist/features/wishlist/hooks/useWishlist.js +2 -0
- package/dist/features/wishlist/hooks/useWishlistCount.d.ts +11 -3
- package/dist/features/wishlist/hooks/useWishlistCount.js +89 -25
- package/dist/features/wishlist/hooks/useWishlistWithGuest.d.ts +1 -1
- package/dist/features/wishlist/schemas/index.d.ts +2 -2
- package/dist/features/wishlist/types/index.d.ts +16 -0
- package/dist/http/api-handler.js +8 -1
- package/dist/index.d.ts +114 -16
- package/dist/index.js +136 -28
- package/dist/monitoring/server-logger.js +9 -3
- package/dist/next/routing/route-map.d.ts +120 -6
- package/dist/next/routing/route-map.js +53 -2
- package/dist/providers/db-firebase/realtime.d.ts +1 -1
- package/dist/react/contexts/SessionContext.js +17 -26
- package/dist/react/hooks/useBulkSelection.d.ts +7 -24
- package/dist/react/hooks/useBulkSelection.js +27 -34
- package/dist/react/hooks/useLongPress.d.ts +3 -16
- package/dist/react/hooks/useLongPress.js +6 -25
- package/dist/react/index.d.ts +1 -0
- package/dist/react/index.js +2 -0
- package/dist/repositories/index.d.ts +3 -0
- package/dist/repositories/index.js +2 -0
- package/dist/seed/actions/demo-seed-actions.d.ts +2 -2
- package/dist/seed/actions/demo-seed-actions.js +1 -1
- package/dist/seed/anime-figures-seed-data.d.ts +8 -0
- package/dist/seed/anime-figures-seed-data.js +1033 -0
- package/dist/seed/beyblade-seed-data.js +206 -24
- package/dist/seed/bids-seed-data.d.ts +4 -10
- package/dist/seed/bids-seed-data.js +365 -238
- package/dist/seed/blog-posts-seed-data.d.ts +3 -2
- package/dist/seed/blog-posts-seed-data.js +250 -511
- package/dist/seed/brands-seed-data.d.ts +7 -0
- package/dist/seed/brands-seed-data.js +410 -0
- package/dist/seed/carousel-slides-seed-data.d.ts +3 -2
- package/dist/seed/carousel-slides-seed-data.js +177 -216
- package/dist/seed/cart-seed-data.d.ts +9 -9
- package/dist/seed/cart-seed-data.js +73 -73
- package/dist/seed/categories-seed-data.d.ts +4 -2
- package/dist/seed/categories-seed-data.js +720 -879
- package/dist/seed/conversations-seed-data.d.ts +8 -0
- package/dist/seed/conversations-seed-data.js +388 -0
- package/dist/seed/cosplay-accessories-seed-data.d.ts +8 -0
- package/dist/seed/cosplay-accessories-seed-data.js +647 -0
- package/dist/seed/coupon-usage-seed-data.d.ts +25 -0
- package/dist/seed/coupon-usage-seed-data.js +69 -0
- package/dist/seed/coupons-seed-data.d.ts +6 -3
- package/dist/seed/coupons-seed-data.js +375 -3
- package/dist/seed/events-seed-data.d.ts +4 -2
- package/dist/seed/events-seed-data.js +128 -430
- package/dist/seed/factories/cart.factory.d.ts +0 -1
- package/dist/seed/factories/cart.factory.js +2 -2
- package/dist/seed/faq-seed-data.d.ts +11 -18
- package/dist/seed/faq-seed-data.js +786 -1817
- package/dist/seed/grouped-listings-seed-data.d.ts +8 -0
- package/dist/seed/grouped-listings-seed-data.js +201 -0
- package/dist/seed/homepage-sections-seed-data.d.ts +3 -13
- package/dist/seed/homepage-sections-seed-data.js +228 -252
- package/dist/seed/hot-wheels-seed-data.js +285 -38
- package/dist/seed/index.d.ts +12 -11
- package/dist/seed/index.js +10 -12
- package/dist/seed/letitrip-official-seed-data.d.ts +8 -0
- package/dist/seed/letitrip-official-seed-data.js +399 -0
- package/dist/seed/manifest.d.ts +15 -0
- package/dist/seed/manifest.js +140 -0
- package/dist/seed/notifications-seed-data.d.ts +4 -2
- package/dist/seed/notifications-seed-data.js +117 -440
- package/dist/seed/orders-seed-data.d.ts +4 -2
- package/dist/seed/orders-seed-data.js +1090 -521
- package/dist/seed/payouts-seed-data.d.ts +4 -2
- package/dist/seed/payouts-seed-data.js +522 -145
- package/dist/seed/pokemon-carousel-slides-seed-data.js +6 -1
- package/dist/seed/pokemon-categories-seed-data.js +81 -81
- package/dist/seed/pokemon-homepage-sections-seed-data.d.ts +1 -1
- package/dist/seed/pokemon-homepage-sections-seed-data.js +116 -23
- package/dist/seed/pokemon-products-seed-data.d.ts +1 -1
- package/dist/seed/pokemon-products-seed-data.js +83 -73
- package/dist/seed/pokemon-seed-bundle.d.ts +5 -1
- package/dist/seed/pokemon-seed-bundle.js +21 -2
- package/dist/seed/pokemon-stores-seed-data.js +85 -9
- package/dist/seed/pokemon-users-seed-data.js +107 -8
- package/dist/seed/products-auctions-seed-data.d.ts +10 -0
- package/dist/seed/products-auctions-seed-data.js +689 -0
- package/dist/seed/products-preorders-seed-data.d.ts +9 -0
- package/dist/seed/products-preorders-seed-data.js +483 -0
- package/dist/seed/products-seed-data.js +34 -13
- package/dist/seed/products-standard-seed-data.d.ts +8 -0
- package/dist/seed/products-standard-seed-data.js +4179 -0
- package/dist/seed/retro-gaming-seed-data.d.ts +8 -0
- package/dist/seed/retro-gaming-seed-data.js +801 -0
- package/dist/seed/reviews-seed-data.d.ts +4 -17
- package/dist/seed/reviews-seed-data.js +1043 -515
- package/dist/seed/scammers-seed-data.d.ts +17 -0
- package/dist/seed/scammers-seed-data.js +118 -0
- package/dist/seed/site-settings-seed-data.js +25 -2
- package/dist/seed/store-addresses-seed-data.js +188 -84
- package/dist/seed/stores-seed-data.d.ts +3 -9
- package/dist/seed/stores-seed-data.js +212 -102
- package/dist/seed/sublisting-categories-seed-data.d.ts +7 -0
- package/dist/seed/sublisting-categories-seed-data.js +315 -0
- package/dist/seed/transformers-seed-data.js +34 -14
- package/dist/seed/users-seed-data.d.ts +3 -2
- package/dist/seed/users-seed-data.js +531 -440
- package/dist/seed/wishlists-seed-data.js +13 -13
- package/dist/server.d.ts +9 -2
- package/dist/server.js +12 -4
- package/dist/tokens/tokens.css +76 -31
- package/dist/ui/components/Avatar.style.css +10 -12
- package/dist/ui/components/BaseListingCard.d.ts +8 -3
- package/dist/ui/components/BaseListingCard.js +17 -6
- package/dist/ui/components/BaseListingCard.style.css +3 -1
- package/dist/ui/components/BulkActionsBar.d.ts +16 -0
- package/dist/ui/components/BulkActionsBar.js +22 -0
- package/dist/ui/components/Button.style.css +23 -23
- package/dist/ui/components/Card.style.css +60 -62
- package/dist/ui/components/Checkbox.style.css +19 -21
- package/dist/ui/components/DashboardStatsCard.style.css +12 -14
- package/dist/ui/components/Drawer.style.css +18 -14
- package/dist/ui/components/Dropdown.style.css +25 -27
- package/dist/ui/components/EmptyState.style.css +2 -4
- package/dist/ui/components/HorizontalScroller.d.ts +3 -1
- package/dist/ui/components/HorizontalScroller.js +116 -21
- package/dist/ui/components/HorizontalScroller.style.css +2 -2
- package/dist/ui/components/ImageLightbox.d.ts +0 -9
- package/dist/ui/components/ImageLightbox.js +43 -9
- package/dist/ui/components/InlineCreateSelect.d.ts +38 -0
- package/dist/ui/components/InlineCreateSelect.js +70 -0
- package/dist/ui/components/ListingLayout.style.css +41 -77
- package/dist/ui/components/ListingToolbar.d.ts +54 -0
- package/dist/ui/components/ListingToolbar.js +34 -0
- package/dist/ui/components/Modal.style.css +14 -10
- package/dist/ui/components/PageLoader.d.ts +11 -0
- package/dist/ui/components/PageLoader.js +21 -0
- package/dist/ui/components/Radio.style.css +34 -36
- package/dist/ui/components/RichTextEditor.js +1 -1
- package/dist/ui/components/RowActionMenu.d.ts +1 -0
- package/dist/ui/components/RowActionMenu.js +4 -2
- package/dist/ui/components/SectionTabs.js +1 -1
- package/dist/ui/components/SectionTabs.style.css +1 -0
- package/dist/ui/components/SideModal.style.css +4 -8
- package/dist/ui/components/Slider.style.css +2 -4
- package/dist/ui/components/Tabs.style.css +8 -10
- package/dist/ui/components/Toast.style.css +22 -24
- package/dist/ui/components/Toggle.style.css +11 -13
- package/dist/ui/index.d.ts +9 -0
- package/dist/ui/index.js +5 -0
- package/dist/ui/rich-text/RichText.js +2 -1
- package/dist/ui/rich-text/RichText.style.css +292 -5
- package/dist/ui/rich-text/RichTextRenderer.d.ts +15 -0
- package/dist/ui/rich-text/RichTextRenderer.js +15 -0
- package/dist/utils/id-generators.d.ts +10 -0
- package/dist/utils/id-generators.js +12 -0
- package/dist/validation/schemas.d.ts +9 -9
- package/package.json +5 -1
- package/README.md +0 -116
|
@@ -1,392 +1,368 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Homepage Sections Seed Data
|
|
3
|
-
*
|
|
4
|
-
*
|
|
5
|
-
* ID Pattern: section-{type}-{timestamp}
|
|
6
|
-
* All IDs follow the generateHomepageSectionId() pattern from @/utils
|
|
7
|
-
*
|
|
8
|
-
* Section order follows DEFAULT_SECTION_ORDER from schema:
|
|
9
|
-
* welcome(1) → trust-indicators(2) → categories(3) → products(4,5) →
|
|
10
|
-
* pre-orders(6) → auctions(7) → banner(8) → features(9) → reviews(10) →
|
|
11
|
-
* whatsapp-community(11) → faq(12) → blog-articles(13) → newsletter(14) →
|
|
12
|
-
* stores(15) → events(16) → brands(17, disabled)
|
|
13
|
-
*
|
|
14
|
-
* 17 total sections (15 enabled, 2 disabled)
|
|
2
|
+
* Homepage Sections Seed Data — LetItRip Collectibles Platform
|
|
3
|
+
* All 19 section types seeded. section- prefix, id === slug.
|
|
4
|
+
* Order reflects the recommended homepage layout.
|
|
15
5
|
*/
|
|
16
|
-
// Dynamic date helpers
|
|
17
6
|
const NOW = new Date();
|
|
18
7
|
const daysAgo = (n) => new Date(NOW.getTime() - n * 86400000);
|
|
19
8
|
export const homepageSectionsSeedData = [
|
|
20
|
-
//
|
|
21
|
-
// 1. WELCOME SECTION
|
|
22
|
-
// ============================================
|
|
9
|
+
// ── 1. welcome ────────────────────────────────────────────────────────────
|
|
23
10
|
{
|
|
24
|
-
id: "section-welcome-
|
|
11
|
+
id: "section-welcome-hero",
|
|
25
12
|
type: "welcome",
|
|
26
13
|
order: 1,
|
|
27
14
|
enabled: true,
|
|
28
15
|
config: {
|
|
29
|
-
h1: "
|
|
30
|
-
subtitle: "
|
|
31
|
-
description:
|
|
32
|
-
type: "doc",
|
|
33
|
-
content: [
|
|
34
|
-
{
|
|
35
|
-
type: "paragraph",
|
|
36
|
-
content: [
|
|
37
|
-
{
|
|
38
|
-
type: "text",
|
|
39
|
-
text: "Discover rare anime figures, exclusive live auctions, and pre-orders from verified collectors across India. Scale figures, Nendoroids, Gunpla, Pok\u00e9mon TCG, cosplay, and more.",
|
|
40
|
-
},
|
|
41
|
-
],
|
|
42
|
-
},
|
|
43
|
-
],
|
|
44
|
-
}),
|
|
16
|
+
h1: "India's #1 Collectibles Marketplace",
|
|
17
|
+
subtitle: "Buy, Sell & Auction with Verified Sellers",
|
|
18
|
+
description: "Discover Pokémon TCG cards, Hot Wheels diecast, Beyblade X tops, anime figures, and Gunpla kits from verified sellers across India. Secure payments, escrow protection, authentic products.",
|
|
45
19
|
showCTA: true,
|
|
46
|
-
ctaText: "
|
|
20
|
+
ctaText: "Start Shopping",
|
|
47
21
|
ctaLink: "/products",
|
|
48
22
|
},
|
|
49
|
-
createdAt: daysAgo(
|
|
50
|
-
updatedAt: daysAgo(
|
|
23
|
+
createdAt: daysAgo(90),
|
|
24
|
+
updatedAt: daysAgo(10),
|
|
51
25
|
},
|
|
52
|
-
//
|
|
53
|
-
// 2. TRUST INDICATORS
|
|
54
|
-
// ============================================
|
|
26
|
+
// ── 2. carousel ──────────────────────────────────────────────────────────
|
|
55
27
|
{
|
|
56
|
-
id: "section-
|
|
57
|
-
type: "
|
|
28
|
+
id: "section-hero-carousel",
|
|
29
|
+
type: "carousel",
|
|
58
30
|
order: 2,
|
|
59
31
|
enabled: true,
|
|
32
|
+
config: { title: "Hero Carousel", height: "tall", pauseOnHover: true, showDots: true, showArrows: true },
|
|
33
|
+
createdAt: daysAgo(90),
|
|
34
|
+
updatedAt: daysAgo(5),
|
|
35
|
+
},
|
|
36
|
+
// ── 3. stats ─────────────────────────────────────────────────────────────
|
|
37
|
+
{
|
|
38
|
+
id: "section-platform-stats",
|
|
39
|
+
type: "stats",
|
|
40
|
+
order: 3,
|
|
41
|
+
enabled: true,
|
|
42
|
+
config: {
|
|
43
|
+
title: "LetItRip by the Numbers",
|
|
44
|
+
stats: [
|
|
45
|
+
{ key: "products", label: "Listings", value: "31", source: "live", metric: "total_listings", suffix: "+" },
|
|
46
|
+
{ key: "sellers", label: "Verified Sellers", value: "8", source: "live", metric: "verified_sellers", suffix: "+" },
|
|
47
|
+
{ key: "buyers", label: "Happy Buyers", value: "10", source: "live", metric: "total_buyers", suffix: "+" },
|
|
48
|
+
{ key: "rating", label: "Platform Rating", value: "4.7★", source: "live", metric: "platform_rating" },
|
|
49
|
+
],
|
|
50
|
+
},
|
|
51
|
+
createdAt: daysAgo(90),
|
|
52
|
+
updatedAt: daysAgo(15),
|
|
53
|
+
},
|
|
54
|
+
// ── 4. trust-indicators ──────────────────────────────────────────────────
|
|
55
|
+
{
|
|
56
|
+
id: "section-trust-indicators",
|
|
57
|
+
type: "trust-indicators",
|
|
58
|
+
order: 4,
|
|
59
|
+
enabled: true,
|
|
60
60
|
config: {
|
|
61
61
|
title: "Why Collectors Trust LetItRip",
|
|
62
62
|
indicators: [
|
|
63
63
|
{
|
|
64
|
-
id: "
|
|
65
|
-
icon: "
|
|
66
|
-
title: "
|
|
67
|
-
description: "
|
|
64
|
+
id: "trust-verified",
|
|
65
|
+
icon: "shield-check",
|
|
66
|
+
title: "Verified Sellers",
|
|
67
|
+
description: "Every seller is manually verified. Listings reviewed for authenticity before going live.",
|
|
68
68
|
},
|
|
69
69
|
{
|
|
70
|
-
id: "
|
|
71
|
-
icon: "
|
|
72
|
-
title: "
|
|
73
|
-
description: "
|
|
70
|
+
id: "trust-escrow",
|
|
71
|
+
icon: "lock",
|
|
72
|
+
title: "Escrow Payment",
|
|
73
|
+
description: "Payment held in escrow and released only after you confirm delivery.",
|
|
74
74
|
},
|
|
75
75
|
{
|
|
76
|
-
id: "
|
|
77
|
-
icon: "
|
|
78
|
-
title: "
|
|
79
|
-
description: "
|
|
76
|
+
id: "trust-returns",
|
|
77
|
+
icon: "arrow-path",
|
|
78
|
+
title: "Easy Returns",
|
|
79
|
+
description: "Seller return policies cover all product types. Platform mediates disputes.",
|
|
80
80
|
},
|
|
81
81
|
{
|
|
82
|
-
id: "
|
|
83
|
-
icon: "
|
|
84
|
-
title: "
|
|
85
|
-
description: "
|
|
82
|
+
id: "trust-authentic",
|
|
83
|
+
icon: "badge-check",
|
|
84
|
+
title: "Authenticity Guarantee",
|
|
85
|
+
description: "Counterfeit items: full refund + seller suspension. Zero tolerance policy.",
|
|
86
86
|
},
|
|
87
87
|
],
|
|
88
88
|
},
|
|
89
|
-
createdAt: daysAgo(
|
|
90
|
-
updatedAt: daysAgo(
|
|
89
|
+
createdAt: daysAgo(90),
|
|
90
|
+
updatedAt: daysAgo(12),
|
|
91
91
|
},
|
|
92
|
-
//
|
|
93
|
-
// 3. FEATURED CATEGORIES
|
|
94
|
-
// ============================================
|
|
92
|
+
// ── 5. categories ────────────────────────────────────────────────────────
|
|
95
93
|
{
|
|
96
|
-
id: "section-categories
|
|
94
|
+
id: "section-collectibles-categories",
|
|
97
95
|
type: "categories",
|
|
98
|
-
order:
|
|
96
|
+
order: 5,
|
|
99
97
|
enabled: true,
|
|
100
98
|
config: {
|
|
101
99
|
title: "Shop by Category",
|
|
102
100
|
maxCategories: 4,
|
|
103
|
-
autoScroll:
|
|
104
|
-
scrollInterval:
|
|
101
|
+
autoScroll: true,
|
|
102
|
+
scrollInterval: 4000,
|
|
105
103
|
},
|
|
106
|
-
createdAt: daysAgo(
|
|
107
|
-
updatedAt: daysAgo(
|
|
104
|
+
createdAt: daysAgo(90),
|
|
105
|
+
updatedAt: daysAgo(8),
|
|
108
106
|
},
|
|
109
|
-
//
|
|
110
|
-
// 4. FEATURED PRODUCTS
|
|
111
|
-
// ============================================
|
|
107
|
+
// ── 6. brands ────────────────────────────────────────────────────────────
|
|
112
108
|
{
|
|
113
|
-
id: "section-
|
|
114
|
-
type: "
|
|
115
|
-
order:
|
|
109
|
+
id: "section-top-brands",
|
|
110
|
+
type: "brands",
|
|
111
|
+
order: 6,
|
|
116
112
|
enabled: true,
|
|
117
113
|
config: {
|
|
118
|
-
title: "
|
|
119
|
-
subtitle: "
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
mobileItemsPerRow: 1,
|
|
124
|
-
autoScroll: false,
|
|
125
|
-
scrollInterval: 5000,
|
|
114
|
+
title: "Top Collectibles Brands",
|
|
115
|
+
subtitle: "Authentic products from the world's leading collectibles manufacturers",
|
|
116
|
+
maxBrands: 13,
|
|
117
|
+
autoScroll: true,
|
|
118
|
+
scrollInterval: 3000,
|
|
126
119
|
},
|
|
127
|
-
createdAt: daysAgo(
|
|
128
|
-
updatedAt: daysAgo(
|
|
120
|
+
createdAt: daysAgo(90),
|
|
121
|
+
updatedAt: daysAgo(6),
|
|
129
122
|
},
|
|
130
|
-
//
|
|
131
|
-
// 5. NEW ARRIVALS PRODUCTS
|
|
132
|
-
// ============================================
|
|
123
|
+
// ── 7. products — featured ───────────────────────────────────────────────
|
|
133
124
|
{
|
|
134
|
-
id: "section-products
|
|
125
|
+
id: "section-featured-products",
|
|
135
126
|
type: "products",
|
|
136
|
-
order:
|
|
127
|
+
order: 7,
|
|
137
128
|
enabled: true,
|
|
138
129
|
config: {
|
|
139
|
-
title: "
|
|
140
|
-
subtitle: "
|
|
130
|
+
title: "Featured Collectibles",
|
|
131
|
+
subtitle: "Hand-picked by our team — fresh stock, verified authentic",
|
|
141
132
|
maxProducts: 18,
|
|
142
133
|
rows: 2,
|
|
143
134
|
itemsPerRow: 3,
|
|
144
135
|
mobileItemsPerRow: 1,
|
|
145
|
-
autoScroll:
|
|
146
|
-
scrollInterval:
|
|
136
|
+
autoScroll: false,
|
|
137
|
+
scrollInterval: 0,
|
|
147
138
|
},
|
|
148
|
-
createdAt: daysAgo(
|
|
149
|
-
updatedAt: daysAgo(
|
|
139
|
+
createdAt: daysAgo(90),
|
|
140
|
+
updatedAt: daysAgo(4),
|
|
150
141
|
},
|
|
151
|
-
//
|
|
152
|
-
// 6. PRE-ORDERS
|
|
153
|
-
// ============================================
|
|
142
|
+
// ── 8. auctions ──────────────────────────────────────────────────────────
|
|
154
143
|
{
|
|
155
|
-
id: "section-
|
|
156
|
-
type: "
|
|
157
|
-
order:
|
|
144
|
+
id: "section-live-auctions",
|
|
145
|
+
type: "auctions",
|
|
146
|
+
order: 8,
|
|
158
147
|
enabled: true,
|
|
159
148
|
config: {
|
|
160
|
-
title: "
|
|
161
|
-
subtitle: "
|
|
162
|
-
|
|
149
|
+
title: "Live Auctions",
|
|
150
|
+
subtitle: "Bid on rare collectibles — auctions ending soon",
|
|
151
|
+
maxAuctions: 18,
|
|
163
152
|
rows: 2,
|
|
164
153
|
itemsPerRow: 3,
|
|
165
154
|
mobileItemsPerRow: 1,
|
|
166
155
|
autoScroll: false,
|
|
167
|
-
scrollInterval:
|
|
156
|
+
scrollInterval: 0,
|
|
168
157
|
},
|
|
169
|
-
createdAt: daysAgo(
|
|
170
|
-
updatedAt: daysAgo(
|
|
158
|
+
createdAt: daysAgo(90),
|
|
159
|
+
updatedAt: daysAgo(3),
|
|
171
160
|
},
|
|
172
|
-
//
|
|
173
|
-
// 7. LIVE AUCTIONS
|
|
174
|
-
// ============================================
|
|
161
|
+
// ── 9. pre-orders ────────────────────────────────────────────────────────
|
|
175
162
|
{
|
|
176
|
-
id: "section-
|
|
177
|
-
type: "
|
|
178
|
-
order:
|
|
163
|
+
id: "section-pre-orders",
|
|
164
|
+
type: "pre-orders",
|
|
165
|
+
order: 9,
|
|
179
166
|
enabled: true,
|
|
180
167
|
config: {
|
|
181
|
-
title: "
|
|
182
|
-
subtitle: "
|
|
183
|
-
|
|
168
|
+
title: "Reserve Before It Ships",
|
|
169
|
+
subtitle: "Secure upcoming Pokémon, Bandai, and Hot Wheels releases with a deposit",
|
|
170
|
+
maxItems: 18,
|
|
184
171
|
rows: 2,
|
|
185
172
|
itemsPerRow: 3,
|
|
186
173
|
mobileItemsPerRow: 1,
|
|
187
174
|
autoScroll: false,
|
|
188
|
-
scrollInterval:
|
|
175
|
+
scrollInterval: 0,
|
|
189
176
|
},
|
|
190
|
-
createdAt: daysAgo(
|
|
191
|
-
updatedAt: daysAgo(
|
|
177
|
+
createdAt: daysAgo(90),
|
|
178
|
+
updatedAt: daysAgo(3),
|
|
192
179
|
},
|
|
193
|
-
//
|
|
194
|
-
// 8. PROMOTIONAL BANNER
|
|
195
|
-
// ============================================
|
|
180
|
+
// ── 10. banner — Beyblade X promo ────────────────────────────────────────
|
|
196
181
|
{
|
|
197
|
-
id: "section-banner
|
|
182
|
+
id: "section-beyblade-x-banner",
|
|
198
183
|
type: "banner",
|
|
199
|
-
order:
|
|
184
|
+
order: 10,
|
|
200
185
|
enabled: true,
|
|
201
186
|
config: {
|
|
202
187
|
height: "md",
|
|
203
|
-
|
|
188
|
+
backgroundImage: "https://images.unsplash.com/photo-1551698618-1dfe5d97d256?w=1920&h=400&fit=crop",
|
|
204
189
|
content: {
|
|
205
|
-
title: "
|
|
206
|
-
subtitle: "
|
|
207
|
-
description: "
|
|
190
|
+
title: "Beyblade X is Here",
|
|
191
|
+
subtitle: "Official Takara Tomy Import — BX-01, BX-05, BX-10 and more",
|
|
192
|
+
description: "India's best selection of Beyblade X tops, launchers, and XStadiums.",
|
|
208
193
|
},
|
|
209
194
|
buttons: [
|
|
210
|
-
{
|
|
211
|
-
|
|
212
|
-
link: "/products",
|
|
213
|
-
variant: "primary",
|
|
214
|
-
},
|
|
195
|
+
{ text: "Shop Beyblade X", link: "/categories/category-beyblade-tops", variant: "primary" },
|
|
196
|
+
{ text: "Beginner's Guide", link: "/blog/blog-beyblade-x-beginners-guide-2026", variant: "outline" },
|
|
215
197
|
],
|
|
216
|
-
clickable:
|
|
217
|
-
clickLink: "/deals",
|
|
198
|
+
clickable: false,
|
|
218
199
|
},
|
|
219
|
-
createdAt: daysAgo(
|
|
220
|
-
updatedAt: daysAgo(
|
|
200
|
+
createdAt: daysAgo(45),
|
|
201
|
+
updatedAt: daysAgo(3),
|
|
221
202
|
},
|
|
222
|
-
//
|
|
223
|
-
// 9. FEATURES SECTION
|
|
224
|
-
// ============================================
|
|
203
|
+
// ── 11. features ─────────────────────────────────────────────────────────
|
|
225
204
|
{
|
|
226
|
-
id: "section-features
|
|
205
|
+
id: "section-platform-features",
|
|
227
206
|
type: "features",
|
|
228
|
-
order:
|
|
207
|
+
order: 11,
|
|
229
208
|
enabled: true,
|
|
230
209
|
config: {
|
|
231
|
-
title: "
|
|
232
|
-
features: [
|
|
210
|
+
title: "Everything a Collector Needs",
|
|
211
|
+
features: [
|
|
212
|
+
"Verified authentic listings — every item reviewed before going live",
|
|
213
|
+
"Escrow payment protection — money held until you confirm delivery",
|
|
214
|
+
"Graded slab support — PSA, BGS, CGC with certificate verification",
|
|
215
|
+
"Live auctions with auto-extend — no last-second sniping",
|
|
216
|
+
"Pre-orders with deposit — secure releases with 20-30% down",
|
|
217
|
+
"Make-an-offer on any listing — negotiate your price",
|
|
218
|
+
"5-star store review system on every seller",
|
|
219
|
+
"Fast India-wide delivery — 3–7 business days standard",
|
|
220
|
+
],
|
|
233
221
|
},
|
|
234
|
-
createdAt: daysAgo(
|
|
235
|
-
updatedAt: daysAgo(
|
|
222
|
+
createdAt: daysAgo(90),
|
|
223
|
+
updatedAt: daysAgo(20),
|
|
236
224
|
},
|
|
237
|
-
//
|
|
238
|
-
// 10. CUSTOMER REVIEWS
|
|
239
|
-
// ============================================
|
|
225
|
+
// ── 12. reviews ──────────────────────────────────────────────────────────
|
|
240
226
|
{
|
|
241
|
-
id: "section-reviews
|
|
227
|
+
id: "section-collector-reviews",
|
|
242
228
|
type: "reviews",
|
|
243
|
-
order:
|
|
229
|
+
order: 12,
|
|
244
230
|
enabled: true,
|
|
245
231
|
config: {
|
|
246
|
-
title: "What
|
|
232
|
+
title: "What Collectors Are Saying",
|
|
247
233
|
maxReviews: 18,
|
|
248
234
|
itemsPerView: 3,
|
|
249
235
|
mobileItemsPerView: 1,
|
|
250
236
|
autoScroll: true,
|
|
251
|
-
scrollInterval:
|
|
237
|
+
scrollInterval: 5000,
|
|
252
238
|
},
|
|
253
|
-
createdAt: daysAgo(
|
|
254
|
-
updatedAt: daysAgo(
|
|
239
|
+
createdAt: daysAgo(90),
|
|
240
|
+
updatedAt: daysAgo(7),
|
|
255
241
|
},
|
|
256
|
-
//
|
|
257
|
-
// 11. WHATSAPP COMMUNITY
|
|
258
|
-
// ============================================
|
|
242
|
+
// ── 13. stores ───────────────────────────────────────────────────────────
|
|
259
243
|
{
|
|
260
|
-
id: "section-
|
|
261
|
-
type: "
|
|
262
|
-
order:
|
|
244
|
+
id: "section-featured-stores",
|
|
245
|
+
type: "stores",
|
|
246
|
+
order: 13,
|
|
263
247
|
enabled: true,
|
|
264
248
|
config: {
|
|
265
|
-
title: "
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
"Exclusive discounts",
|
|
271
|
-
"Early sale access",
|
|
272
|
-
"Product tips",
|
|
273
|
-
"Direct support",
|
|
274
|
-
],
|
|
275
|
-
buttonText: "Join WhatsApp Community",
|
|
249
|
+
title: "Top Collectibles Stores",
|
|
250
|
+
subtitle: "Browse our verified seller stores — Pokémon, Hot Wheels, Beyblade X, and more",
|
|
251
|
+
maxStores: 5,
|
|
252
|
+
autoScroll: false,
|
|
253
|
+
scrollInterval: 0,
|
|
276
254
|
},
|
|
277
|
-
createdAt: daysAgo(
|
|
278
|
-
updatedAt: daysAgo(
|
|
255
|
+
createdAt: daysAgo(90),
|
|
256
|
+
updatedAt: daysAgo(5),
|
|
279
257
|
},
|
|
280
|
-
//
|
|
281
|
-
// 12. FAQ SECTION
|
|
282
|
-
// ============================================
|
|
258
|
+
// ── 14. events ───────────────────────────────────────────────────────────
|
|
283
259
|
{
|
|
284
|
-
id: "section-
|
|
285
|
-
type: "
|
|
286
|
-
order:
|
|
260
|
+
id: "section-upcoming-events",
|
|
261
|
+
type: "events",
|
|
262
|
+
order: 14,
|
|
287
263
|
enabled: true,
|
|
288
264
|
config: {
|
|
289
|
-
title: "
|
|
290
|
-
subtitle: "
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
linkToFullPage: true,
|
|
295
|
-
categories: ["general", "shipping", "returns", "payment"],
|
|
265
|
+
title: "Tournaments & Community Events",
|
|
266
|
+
subtitle: "Sales, polls, and collector meetups — stay in the loop",
|
|
267
|
+
maxEvents: 6,
|
|
268
|
+
autoScroll: false,
|
|
269
|
+
scrollInterval: 0,
|
|
296
270
|
},
|
|
297
|
-
createdAt: daysAgo(
|
|
298
|
-
updatedAt: daysAgo(
|
|
271
|
+
createdAt: daysAgo(60),
|
|
272
|
+
updatedAt: daysAgo(4),
|
|
299
273
|
},
|
|
300
|
-
//
|
|
301
|
-
// 13. BLOG ARTICLES
|
|
302
|
-
// ============================================
|
|
274
|
+
// ── 15. blog-articles ────────────────────────────────────────────────────
|
|
303
275
|
{
|
|
304
|
-
id: "section-blog
|
|
276
|
+
id: "section-collector-blog",
|
|
305
277
|
type: "blog-articles",
|
|
306
|
-
order:
|
|
278
|
+
order: 15,
|
|
307
279
|
enabled: true,
|
|
308
280
|
config: {
|
|
309
|
-
title: "
|
|
310
|
-
subtitle: "Figure reviews, auction guides, and collector community stories",
|
|
281
|
+
title: "Collector's Corner",
|
|
311
282
|
maxArticles: 4,
|
|
312
283
|
showReadTime: true,
|
|
313
284
|
showAuthor: true,
|
|
314
285
|
showThumbnails: true,
|
|
315
286
|
},
|
|
316
|
-
createdAt: daysAgo(
|
|
317
|
-
updatedAt: daysAgo(
|
|
287
|
+
createdAt: daysAgo(90),
|
|
288
|
+
updatedAt: daysAgo(6),
|
|
318
289
|
},
|
|
319
|
-
//
|
|
320
|
-
// 14. NEWSLETTER SIGNUP
|
|
321
|
-
// ============================================
|
|
290
|
+
// ── 16. whatsapp-community ───────────────────────────────────────────────
|
|
322
291
|
{
|
|
323
|
-
id: "section-
|
|
324
|
-
type: "
|
|
325
|
-
order:
|
|
292
|
+
id: "section-whatsapp-community",
|
|
293
|
+
type: "whatsapp-community",
|
|
294
|
+
order: 16,
|
|
326
295
|
enabled: true,
|
|
327
296
|
config: {
|
|
328
|
-
title: "
|
|
329
|
-
description: "
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
297
|
+
title: "Join the LetItRip Collectors Community",
|
|
298
|
+
description: "Connect with 4,000+ Indian collectors on WhatsApp. Share pulls, get authentication help, trade advice, and be first to know about new drops.",
|
|
299
|
+
groupLink: "https://chat.whatsapp.com/letitrip-collectors",
|
|
300
|
+
memberCount: 4200,
|
|
301
|
+
benefits: [
|
|
302
|
+
"First look at rare listings before they go live",
|
|
303
|
+
"Authentication help from experienced collectors",
|
|
304
|
+
"Live auction alerts for Charizard, Redlines & signed tops",
|
|
305
|
+
"Free giveaways and community events",
|
|
306
|
+
],
|
|
307
|
+
buttonText: "Join WhatsApp Community",
|
|
308
|
+
testimonial: '"The LetItRip WhatsApp group helped me authenticate a PSA slab within 10 minutes." — Rahul S., Bengaluru',
|
|
334
309
|
},
|
|
335
|
-
createdAt: daysAgo(
|
|
336
|
-
updatedAt: daysAgo(
|
|
310
|
+
createdAt: daysAgo(90),
|
|
311
|
+
updatedAt: daysAgo(8),
|
|
337
312
|
},
|
|
338
|
-
//
|
|
339
|
-
// 15. FEATURED STORES
|
|
340
|
-
// ============================================
|
|
313
|
+
// ── 17. faq ──────────────────────────────────────────────────────────────
|
|
341
314
|
{
|
|
342
|
-
id: "section-
|
|
343
|
-
type: "
|
|
344
|
-
order:
|
|
315
|
+
id: "section-homepage-faq",
|
|
316
|
+
type: "faq",
|
|
317
|
+
order: 17,
|
|
345
318
|
enabled: true,
|
|
346
319
|
config: {
|
|
347
|
-
title: "
|
|
348
|
-
subtitle: "
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
320
|
+
title: "Frequently Asked Questions",
|
|
321
|
+
subtitle: "Quick answers about buying, selling, and collecting on LetItRip",
|
|
322
|
+
showOnHomepage: true,
|
|
323
|
+
displayCount: 8,
|
|
324
|
+
expandedByDefault: true,
|
|
325
|
+
linkToFullPage: true,
|
|
326
|
+
categories: ["general", "orders_payment", "shipping_delivery", "returns_refunds", "product_information"],
|
|
352
327
|
},
|
|
353
|
-
createdAt: daysAgo(
|
|
354
|
-
updatedAt: daysAgo(
|
|
328
|
+
createdAt: daysAgo(90),
|
|
329
|
+
updatedAt: daysAgo(10),
|
|
355
330
|
},
|
|
356
|
-
//
|
|
357
|
-
// 16. UPCOMING EVENTS
|
|
358
|
-
// ============================================
|
|
331
|
+
// ── 18. newsletter ───────────────────────────────────────────────────────
|
|
359
332
|
{
|
|
360
|
-
id: "section-
|
|
361
|
-
type: "
|
|
362
|
-
order:
|
|
333
|
+
id: "section-newsletter",
|
|
334
|
+
type: "newsletter",
|
|
335
|
+
order: 18,
|
|
363
336
|
enabled: true,
|
|
364
337
|
config: {
|
|
365
|
-
title: "
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
338
|
+
title: "Get New Drop Alerts",
|
|
339
|
+
description: "Be first to know about rare Pokémon listings, Hot Wheels STH drops, Beyblade X imports, and LetItRip-exclusive auction events.",
|
|
340
|
+
placeholder: "Enter your email address",
|
|
341
|
+
buttonText: "Subscribe",
|
|
342
|
+
privacyText: "We respect your privacy. Unsubscribe anytime.",
|
|
343
|
+
privacyLink: "/privacy",
|
|
370
344
|
},
|
|
371
|
-
createdAt: daysAgo(
|
|
372
|
-
updatedAt: daysAgo(
|
|
345
|
+
createdAt: daysAgo(90),
|
|
346
|
+
updatedAt: daysAgo(12),
|
|
373
347
|
},
|
|
374
|
-
//
|
|
375
|
-
// 17. BRANDS (disabled — no brand catalogue yet)
|
|
376
|
-
// ============================================
|
|
348
|
+
// ── 19. social-feed (disabled — credentials not yet configured) ───────────
|
|
377
349
|
{
|
|
378
|
-
id: "section-
|
|
379
|
-
type: "
|
|
380
|
-
order:
|
|
350
|
+
id: "section-social-feed-instagram",
|
|
351
|
+
type: "social-feed",
|
|
352
|
+
order: 19,
|
|
381
353
|
enabled: false,
|
|
382
354
|
config: {
|
|
383
|
-
title: "
|
|
384
|
-
subtitle: "
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
355
|
+
title: "LetItRip on Instagram",
|
|
356
|
+
subtitle: "Follow @letitrip for daily collection showcases and new drop alerts",
|
|
357
|
+
platform: "instagram",
|
|
358
|
+
handle: "letitrip",
|
|
359
|
+
postType: "all",
|
|
360
|
+
count: 9,
|
|
361
|
+
layout: "grid",
|
|
362
|
+
showCaption: true,
|
|
363
|
+
showStats: false,
|
|
388
364
|
},
|
|
389
|
-
createdAt: daysAgo(
|
|
390
|
-
updatedAt: daysAgo(
|
|
365
|
+
createdAt: daysAgo(30),
|
|
366
|
+
updatedAt: daysAgo(30),
|
|
391
367
|
},
|
|
392
368
|
];
|