@mohasinac/appkit 2.3.1 → 2.3.2

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.
Files changed (253) hide show
  1. package/dist/client.d.ts +12 -8
  2. package/dist/client.js +7 -4
  3. package/dist/constants/api-endpoints.d.ts +4 -0
  4. package/dist/constants/api-endpoints.js +2 -0
  5. package/dist/core/contact-submissions.repository.d.ts +32 -0
  6. package/dist/core/contact-submissions.repository.js +49 -0
  7. package/dist/core/index.d.ts +2 -0
  8. package/dist/core/index.js +1 -0
  9. package/dist/features/about/components/HowPayoutsWorkView.js +1 -1
  10. package/dist/features/account/components/AddressFilters.d.ts +5 -0
  11. package/dist/features/account/components/AddressFilters.js +20 -0
  12. package/dist/features/account/components/AddressesIndexListing.d.ts +6 -0
  13. package/dist/features/account/components/AddressesIndexListing.js +51 -0
  14. package/dist/features/account/components/UserSidebar.d.ts +7 -3
  15. package/dist/features/account/components/UserSidebar.js +55 -7
  16. package/dist/features/account/hooks/useAddresses.d.ts +7 -0
  17. package/dist/features/account/hooks/useAddresses.js +12 -1
  18. package/dist/features/admin/actions/admin-read-actions.d.ts +12 -0
  19. package/dist/features/admin/actions/admin-read-actions.js +18 -0
  20. package/dist/features/admin/components/AdminBlogView.js +26 -2
  21. package/dist/features/admin/components/AdminCarouselView.js +18 -2
  22. package/dist/features/admin/components/AdminCategoriesView.js +27 -2
  23. package/dist/features/admin/components/AdminContactView.d.ts +4 -0
  24. package/dist/features/admin/components/AdminContactView.js +50 -0
  25. package/dist/features/admin/components/AdminFaqsView.js +19 -2
  26. package/dist/features/admin/components/AdminListingScaffold.d.ts +11 -2
  27. package/dist/features/admin/components/AdminListingScaffold.js +14 -3
  28. package/dist/features/admin/components/AdminNewsletterView.d.ts +4 -0
  29. package/dist/features/admin/components/AdminNewsletterView.js +50 -0
  30. package/dist/features/admin/components/AdminProductsView.js +30 -2
  31. package/dist/features/admin/components/AdminReviewsView.js +26 -2
  32. package/dist/features/admin/components/AdminStoresView.js +17 -2
  33. package/dist/features/admin/components/AdminUsersView.js +27 -2
  34. package/dist/features/admin/components/DataTable.d.ts +2 -1
  35. package/dist/features/admin/components/DataTable.js +18 -4
  36. package/dist/features/admin/components/index.d.ts +6 -0
  37. package/dist/features/admin/components/index.js +3 -0
  38. package/dist/features/admin/hooks/useAdminListingData.d.ts +3 -1
  39. package/dist/features/admin/hooks/useAdminListingData.js +12 -7
  40. package/dist/features/admin/server.d.ts +3 -0
  41. package/dist/features/admin/server.js +2 -0
  42. package/dist/features/auctions/components/AuctionDetailPageView.js +93 -47
  43. package/dist/features/auctions/components/AuctionFilters.d.ts +8 -0
  44. package/dist/features/auctions/components/AuctionFilters.js +12 -0
  45. package/dist/features/auctions/components/AuctionsListView.d.ts +6 -1
  46. package/dist/features/auctions/components/AuctionsListView.js +37 -5
  47. package/dist/features/auctions/schemas/index.d.ts +4 -4
  48. package/dist/features/blog/components/BlogFeaturedCard.d.ts +1 -7
  49. package/dist/features/blog/components/BlogFeaturedCard.js +4 -5
  50. package/dist/features/blog/components/BlogFilters.js +2 -1
  51. package/dist/features/blog/components/BlogIndexListing.js +14 -9
  52. package/dist/features/blog/components/BlogIndexPageView.d.ts +6 -1
  53. package/dist/features/blog/components/BlogIndexPageView.js +10 -2
  54. package/dist/features/blog/components/BlogListView.d.ts +2 -1
  55. package/dist/features/blog/components/BlogListView.js +10 -3
  56. package/dist/features/categories/components/CategoriesIndexListing.d.ts +1 -1
  57. package/dist/features/categories/components/CategoriesIndexListing.js +41 -38
  58. package/dist/features/categories/components/CategoriesIndexPageView.d.ts +6 -1
  59. package/dist/features/categories/components/CategoriesIndexPageView.js +41 -2
  60. package/dist/features/categories/components/CategoryDetailPageView.js +13 -6
  61. package/dist/features/categories/components/CategoryDetailTabs.d.ts +5 -0
  62. package/dist/features/categories/components/CategoryDetailTabs.js +17 -0
  63. package/dist/features/categories/components/CategoryFilters.js +2 -1
  64. package/dist/features/categories/components/CategoryGrid.d.ts +2 -1
  65. package/dist/features/categories/components/CategoryGrid.js +8 -6
  66. package/dist/features/categories/components/CategoryProductsListing.js +22 -11
  67. package/dist/features/categories/components/index.d.ts +2 -0
  68. package/dist/features/categories/components/index.js +1 -0
  69. package/dist/features/categories/hooks/useCategories.d.ts +20 -0
  70. package/dist/features/categories/hooks/useCategories.js +50 -1
  71. package/dist/features/categories/hooks/useCategoryTree.d.ts +17 -0
  72. package/dist/features/categories/hooks/useCategoryTree.js +65 -0
  73. package/dist/features/events/components/AdminEventEditorView.d.ts +6 -0
  74. package/dist/features/events/components/AdminEventEditorView.js +203 -0
  75. package/dist/features/events/components/AdminEventsView.js +28 -2
  76. package/dist/features/events/components/EventCard.js +4 -2
  77. package/dist/features/events/components/EventFilters.js +2 -1
  78. package/dist/features/events/components/EventsIndexListing.js +40 -10
  79. package/dist/features/events/components/EventsListPageView.d.ts +6 -1
  80. package/dist/features/events/components/EventsListPageView.js +40 -7
  81. package/dist/features/events/components/index.d.ts +2 -0
  82. package/dist/features/events/components/index.js +1 -0
  83. package/dist/features/events/hooks/useEvents.js +2 -0
  84. package/dist/features/events/types/index.d.ts +1 -0
  85. package/dist/features/homepage/components/BlogArticlesSection.js +1 -1
  86. package/dist/features/homepage/components/EventsSection.js +1 -1
  87. package/dist/features/homepage/components/FeaturedAuctionsSection.js +1 -1
  88. package/dist/features/homepage/components/FeaturedPreOrdersSection.js +1 -1
  89. package/dist/features/homepage/components/FeaturedProductsSection.js +1 -1
  90. package/dist/features/homepage/components/FeaturedStoresSection.js +1 -1
  91. package/dist/features/homepage/components/HeroCarousel.js +1 -1
  92. package/dist/features/homepage/components/MarketplaceHomepageView.js +27 -17
  93. package/dist/features/homepage/components/SectionCarousel.js +4 -4
  94. package/dist/features/homepage/components/ShopByCategorySection.js +2 -2
  95. package/dist/features/homepage/schemas/firestore.d.ts +1 -1
  96. package/dist/features/homepage/schemas/firestore.js +2 -1
  97. package/dist/features/layout/AppLayoutShell.d.ts +6 -2
  98. package/dist/features/layout/AppLayoutShell.js +7 -3
  99. package/dist/features/pre-orders/components/MarketplacePreorderCard.d.ts +3 -1
  100. package/dist/features/pre-orders/components/MarketplacePreorderCard.js +6 -2
  101. package/dist/features/pre-orders/components/PreOrderDetailPageView.js +80 -12
  102. package/dist/features/pre-orders/components/PreOrderFilters.d.ts +8 -0
  103. package/dist/features/pre-orders/components/PreOrderFilters.js +21 -0
  104. package/dist/features/pre-orders/components/PreOrdersIndexListing.d.ts +2 -1
  105. package/dist/features/pre-orders/components/PreOrdersIndexListing.js +69 -10
  106. package/dist/features/pre-orders/components/PreOrdersListView.d.ts +6 -1
  107. package/dist/features/pre-orders/components/PreOrdersListView.js +26 -7
  108. package/dist/features/pre-orders/components/index.d.ts +2 -0
  109. package/dist/features/pre-orders/components/index.js +1 -0
  110. package/dist/features/products/components/AuctionsIndexListing.d.ts +2 -1
  111. package/dist/features/products/components/AuctionsIndexListing.js +61 -9
  112. package/dist/features/products/components/InteractiveProductCard.d.ts +2 -4
  113. package/dist/features/products/components/InteractiveProductCard.js +2 -2
  114. package/dist/features/products/components/ProductDetailPageView.d.ts +1 -1
  115. package/dist/features/products/components/ProductDetailPageView.js +116 -25
  116. package/dist/features/products/components/ProductFilters.d.ts +6 -11
  117. package/dist/features/products/components/ProductFilters.js +5 -3
  118. package/dist/features/products/components/ProductGrid.d.ts +8 -2
  119. package/dist/features/products/components/ProductGrid.js +20 -5
  120. package/dist/features/products/components/ProductTabsShell.d.ts +3 -11
  121. package/dist/features/products/components/ProductTabsShell.js +14 -14
  122. package/dist/features/products/components/ProductsIndexListing.js +73 -9
  123. package/dist/features/products/components/ProductsIndexPageView.d.ts +6 -1
  124. package/dist/features/products/components/ProductsIndexPageView.js +39 -6
  125. package/dist/features/products/components/RelatedProductsCarousel.d.ts +7 -0
  126. package/dist/features/products/components/RelatedProductsCarousel.js +11 -0
  127. package/dist/features/products/components/index.d.ts +1 -0
  128. package/dist/features/products/components/index.js +1 -0
  129. package/dist/features/products/hooks/useProducts.js +16 -0
  130. package/dist/features/products/repository/products.repository.d.ts +8 -0
  131. package/dist/features/products/repository/products.repository.js +2 -0
  132. package/dist/features/products/schemas/index.d.ts +8 -8
  133. package/dist/features/products/types/index.d.ts +12 -0
  134. package/dist/features/promotions/components/CouponsIndexListing.d.ts +9 -0
  135. package/dist/features/promotions/components/CouponsIndexListing.js +86 -0
  136. package/dist/features/promotions/components/PromotionsView.d.ts +11 -5
  137. package/dist/features/promotions/components/PromotionsView.js +6 -1
  138. package/dist/features/promotions/components/index.d.ts +4 -2
  139. package/dist/features/promotions/components/index.js +2 -1
  140. package/dist/features/reviews/components/ReviewDetailPageView.d.ts +4 -0
  141. package/dist/features/reviews/components/ReviewDetailPageView.js +20 -0
  142. package/dist/features/reviews/components/ReviewDetailShell.d.ts +7 -0
  143. package/dist/features/reviews/components/ReviewDetailShell.js +80 -0
  144. package/dist/features/reviews/components/ReviewFilters.d.ts +3 -3
  145. package/dist/features/reviews/components/ReviewFilters.js +5 -4
  146. package/dist/features/reviews/components/ReviewsIndexListing.d.ts +4 -3
  147. package/dist/features/reviews/components/ReviewsIndexListing.js +35 -51
  148. package/dist/features/reviews/components/ReviewsIndexPageView.d.ts +6 -1
  149. package/dist/features/reviews/components/ReviewsIndexPageView.js +49 -3
  150. package/dist/features/reviews/components/ReviewsList.js +9 -1
  151. package/dist/features/reviews/components/index.d.ts +1 -0
  152. package/dist/features/reviews/hooks/useReviews.js +15 -1
  153. package/dist/features/reviews/types/index.d.ts +6 -1
  154. package/dist/features/seller/components/SellerSidebar.d.ts +8 -4
  155. package/dist/features/seller/components/SellerSidebar.js +6 -4
  156. package/dist/features/seller/components/index.d.ts +30 -0
  157. package/dist/features/seller/components/index.js +17 -0
  158. package/dist/features/seller/hooks/useSellerStore.d.ts +2 -0
  159. package/dist/features/seller/hooks/useSellerStore.js +2 -0
  160. package/dist/features/seller/permission-map.d.ts +4 -2
  161. package/dist/features/seller/permission-map.js +16 -14
  162. package/dist/features/seller/schemas/index.d.ts +2 -2
  163. package/dist/features/stores/api/[storeSlug]/reviews/route.d.ts +1 -1
  164. package/dist/features/stores/api/[storeSlug]/reviews/route.js +24 -19
  165. package/dist/features/stores/components/InteractiveStoreCard.d.ts +0 -5
  166. package/dist/features/stores/components/InteractiveStoreCard.js +9 -9
  167. package/dist/features/stores/components/StoreAuctionsListing.js +27 -9
  168. package/dist/features/stores/components/StoreDetailLayoutView.js +2 -0
  169. package/dist/features/stores/components/StoreFilters.d.ts +5 -0
  170. package/dist/features/stores/components/StoreFilters.js +20 -0
  171. package/dist/features/stores/components/StoreHeader.js +2 -2
  172. package/dist/features/stores/components/StorePreOrdersListing.d.ts +5 -0
  173. package/dist/features/stores/components/StorePreOrdersListing.js +40 -0
  174. package/dist/features/stores/components/StorePreOrdersPageView.d.ts +4 -0
  175. package/dist/features/stores/components/StorePreOrdersPageView.js +21 -0
  176. package/dist/features/stores/components/StoreProductsListing.js +21 -11
  177. package/dist/features/stores/components/StoreReviewsListing.js +2 -7
  178. package/dist/features/stores/components/StoresIndexListing.js +42 -8
  179. package/dist/features/stores/components/StoresIndexPageView.d.ts +6 -1
  180. package/dist/features/stores/components/StoresIndexPageView.js +9 -2
  181. package/dist/features/stores/components/index.d.ts +3 -0
  182. package/dist/features/stores/components/index.js +1 -0
  183. package/dist/features/stores/hooks/useStores.d.ts +7 -1
  184. package/dist/features/stores/hooks/useStores.js +16 -3
  185. package/dist/features/stores/schemas/index.d.ts +2 -2
  186. package/dist/features/stores/types/index.d.ts +3 -0
  187. package/dist/features/wishlist/hooks/useGuestWishlist.d.ts +20 -0
  188. package/dist/features/wishlist/hooks/useGuestWishlist.js +49 -0
  189. package/dist/features/wishlist/hooks/useWishlistCount.d.ts +7 -0
  190. package/dist/features/wishlist/hooks/useWishlistCount.js +31 -0
  191. package/dist/features/wishlist/hooks/useWishlistWithGuest.d.ts +56 -0
  192. package/dist/features/wishlist/hooks/useWishlistWithGuest.js +57 -0
  193. package/dist/features/wishlist/index.d.ts +3 -0
  194. package/dist/features/wishlist/index.js +3 -0
  195. package/dist/features/wishlist/utils/guest-wishlist.d.ts +22 -0
  196. package/dist/features/wishlist/utils/guest-wishlist.js +70 -0
  197. package/dist/index.d.ts +50 -1
  198. package/dist/index.js +63 -1
  199. package/dist/next/routing/route-map.d.ts +70 -36
  200. package/dist/next/routing/route-map.js +30 -22
  201. package/dist/seed/addresses-seed-data.js +62 -261
  202. package/dist/seed/beyblade-seed-data.d.ts +7 -0
  203. package/dist/seed/beyblade-seed-data.js +947 -0
  204. package/dist/seed/bids-seed-data.d.ts +10 -2
  205. package/dist/seed/bids-seed-data.js +220 -1071
  206. package/dist/seed/blog-posts-seed-data.d.ts +2 -2
  207. package/dist/seed/blog-posts-seed-data.js +455 -117
  208. package/dist/seed/cart-seed-data.d.ts +9 -9
  209. package/dist/seed/cart-seed-data.js +73 -74
  210. package/dist/seed/coupons-seed-data.d.ts +3 -4
  211. package/dist/seed/coupons-seed-data.js +3 -509
  212. package/dist/seed/events-seed-data.d.ts +2 -2
  213. package/dist/seed/events-seed-data.js +315 -476
  214. package/dist/seed/faq-seed-data.d.ts +18 -41
  215. package/dist/seed/faq-seed-data.js +1059 -1172
  216. package/dist/seed/hot-wheels-seed-data.d.ts +7 -0
  217. package/dist/seed/hot-wheels-seed-data.js +1365 -0
  218. package/dist/seed/index.d.ts +6 -1
  219. package/dist/seed/index.js +6 -1
  220. package/dist/seed/pokemon-carousel-slides-seed-data.d.ts +4 -2
  221. package/dist/seed/pokemon-carousel-slides-seed-data.js +152 -268
  222. package/dist/seed/pokemon-categories-seed-data.d.ts +18 -21
  223. package/dist/seed/pokemon-categories-seed-data.js +424 -1004
  224. package/dist/seed/pokemon-coupons-seed-data.d.ts +6 -0
  225. package/dist/seed/pokemon-coupons-seed-data.js +465 -0
  226. package/dist/seed/pokemon-homepage-sections-seed-data.d.ts +3 -2
  227. package/dist/seed/pokemon-homepage-sections-seed-data.js +67 -289
  228. package/dist/seed/pokemon-products-seed-data.js +662 -0
  229. package/dist/seed/pokemon-seed-bundle.d.ts +32 -11
  230. package/dist/seed/pokemon-seed-bundle.js +41 -11
  231. package/dist/seed/pokemon-stores-seed-data.d.ts +2 -3
  232. package/dist/seed/pokemon-stores-seed-data.js +56 -31
  233. package/dist/seed/pokemon-users-seed-data.d.ts +2 -2
  234. package/dist/seed/pokemon-users-seed-data.js +245 -261
  235. package/dist/seed/reviews-seed-data.d.ts +17 -2
  236. package/dist/seed/reviews-seed-data.js +519 -483
  237. package/dist/seed/site-settings-seed-data.js +14 -14
  238. package/dist/seed/store-addresses-seed-data.js +68 -50
  239. package/dist/seed/transformers-seed-data.d.ts +7 -0
  240. package/dist/seed/transformers-seed-data.js +510 -0
  241. package/dist/seed/wishlists-seed-data.d.ts +5 -1
  242. package/dist/seed/wishlists-seed-data.js +82 -4
  243. package/dist/server.d.ts +1 -0
  244. package/dist/server.js +2 -0
  245. package/dist/tokens/index.d.ts +6 -0
  246. package/dist/tokens/index.js +2 -0
  247. package/dist/ui/components/BaseListingCard.js +24 -26
  248. package/dist/ui/components/BaseListingCard.style.css +5 -5
  249. package/dist/ui/components/HorizontalScroller.d.ts +1 -1
  250. package/dist/ui/components/HorizontalScroller.js +19 -5
  251. package/dist/ui/components/SideDrawer.style.css +3 -11
  252. package/dist/ui/rich-text/RichText.js +19 -1
  253. package/package.json +1 -1
@@ -1,19 +1,20 @@
1
1
  /**
2
- * Pokemon Base Set 151 — Homepage Sections Seed Data
3
- * All 15 section slots configured for a Pokémon TCG marketplace
2
+ * Multi-Franchise Collectibles — Homepage Sections Seed Data (5 sections)
3
+ *
4
+ * Covers Pokémon TCG · Hot Wheels · Beyblade Burst · Transformers
4
5
  */
5
6
  const NOW = new Date();
6
7
  const daysAgo = (n) => new Date(NOW.getTime() - n * 86400000);
7
8
  export const pokemonHomepageSectionsSeedData = [
8
- // -- 1. Welcome ------------------------------------------------------------
9
+ // -- 1. Welcome ---------------------------------------------------------------
9
10
  {
10
- id: "section-welcome-pokemon-1707300000001",
11
+ id: "section-welcome-multifranchise-1",
11
12
  type: "welcome",
12
13
  order: 1,
13
14
  enabled: true,
14
15
  config: {
15
- h1: "Welcome to LetItRip — Pokémon Base Set Marketplace",
16
- subtitle: "India's Home for Authentic Base Set 151 Collectibles",
16
+ h1: "India's #1 Collectibles Marketplace",
17
+ subtitle: "Pokémon TCG · Hot Wheels · Beyblade Burst · Transformers",
17
18
  description: JSON.stringify({
18
19
  type: "doc",
19
20
  content: [
@@ -22,102 +23,50 @@ export const pokemonHomepageSectionsSeedData = [
22
23
  content: [
23
24
  {
24
25
  type: "text",
25
- text: "Shop original Pokémon Base Set singles, sealed packs, graded slabs, and accessories. " +
26
- "From Pikachu Commons to 1st Edition Charizard buy and sell with confidence.",
26
+ text: "Shop authentic collectibles from verified sellers across India. " +
27
+ "Original Pokémon Base Set singles, Hot Wheels Treasure Hunts, Beyblade Burst tops, " +
28
+ "and vintage Transformers — all in one place.",
27
29
  },
28
30
  ],
29
31
  },
30
32
  ],
31
33
  }),
32
34
  showCTA: true,
33
- ctaText: "Browse All Cards",
35
+ ctaText: "Explore All Collectibles",
34
36
  ctaLink: "/products",
35
37
  },
36
38
  createdAt: daysAgo(30),
37
39
  updatedAt: daysAgo(1),
38
40
  },
39
- // -- 2. Trust Indicators ---------------------------------------------------
41
+ // -- 2. Featured Products (all franchises) ------------------------------------
40
42
  {
41
- id: "section-trust-indicators-pokemon-1707300000002",
42
- type: "trust-indicators",
43
- order: 2,
44
- enabled: true,
45
- config: {
46
- title: "Why Trainers Trust LetItRip",
47
- indicators: [
48
- {
49
- id: "trust_001",
50
- icon: "🔍",
51
- title: "Authenticity Verified",
52
- description: "Every card inspected by our expert team",
53
- },
54
- {
55
- id: "trust_002",
56
- icon: "📦",
57
- title: "Safe Shipping",
58
- description: "Top-loaders, bubble mailers, and tracked dispatch",
59
- },
60
- {
61
- id: "trust_003",
62
- icon: "🏆",
63
- title: "PSA / BGS Graded",
64
- description: "Graded slabs authenticated and sealed",
65
- },
66
- {
67
- id: "trust_004",
68
- icon: "💳",
69
- title: "Secure Payments",
70
- description: "100% safe and encrypted checkout",
71
- },
72
- ],
73
- },
74
- createdAt: daysAgo(30),
75
- updatedAt: daysAgo(1),
76
- },
77
- // -- 3. Featured Categories ------------------------------------------------
78
- {
79
- id: "section-categories-pokemon-1707300000003",
80
- type: "categories",
81
- order: 3,
82
- enabled: true,
83
- config: {
84
- title: "Shop by Type",
85
- maxCategories: 4,
86
- autoScroll: true,
87
- scrollInterval: 3000,
88
- },
89
- createdAt: daysAgo(30),
90
- updatedAt: daysAgo(1),
91
- },
92
- // -- 4. Featured Products — Holo Rares -------------------------------------
93
- {
94
- id: "section-products-pokemon-featured-1707300000004",
43
+ id: "section-products-featured-multifranchise-2",
95
44
  type: "products",
96
- order: 4,
45
+ order: 2,
97
46
  enabled: true,
98
47
  config: {
99
- title: " Holographic Rare Picks",
100
- subtitle: "The most sought-after singles from the original Base Set",
48
+ title: "Featured Collectibles",
49
+ subtitle: "Hand-picked top picks across all four franchises",
101
50
  maxProducts: 18,
102
51
  rows: 2,
103
52
  itemsPerRow: 3,
104
53
  mobileItemsPerRow: 1,
105
54
  autoScroll: false,
106
- scrollInterval: 3000,
55
+ scrollInterval: 4000,
107
56
  },
108
57
  createdAt: daysAgo(30),
109
58
  updatedAt: daysAgo(1),
110
59
  },
111
- // -- 5. New Arrivals -------------------------------------------------------
60
+ // -- 3. Live Auctions ---------------------------------------------------------
112
61
  {
113
- id: "section-products-pokemon-new-arrivals-1707300000005",
114
- type: "products",
115
- order: 5,
62
+ id: "section-auctions-live-multifranchise-3",
63
+ type: "auctions",
64
+ order: 3,
116
65
  enabled: true,
117
66
  config: {
118
- title: "🆕 New Arrivals",
119
- subtitle: "Freshly listed singles, lots, and accessories",
120
- maxProducts: 18,
67
+ title: "🔥 Live Auctions",
68
+ subtitle: "Bid on graded slabs, rare singles, vintage toys, and exclusive collectibles",
69
+ maxAuctions: 18,
121
70
  rows: 2,
122
71
  itemsPerRow: 3,
123
72
  mobileItemsPerRow: 1,
@@ -127,15 +76,15 @@ export const pokemonHomepageSectionsSeedData = [
127
76
  createdAt: daysAgo(30),
128
77
  updatedAt: daysAgo(1),
129
78
  },
130
- // -- 6. Pre-Orders -------------------------------------------------------
79
+ // -- 4. Pre-Orders ------------------------------------------------------------
131
80
  {
132
- id: "section-pre-orders-pokemon-1707300000006",
81
+ id: "section-preorders-multifranchise-4",
133
82
  type: "pre-orders",
134
- order: 6,
83
+ order: 4,
135
84
  enabled: true,
136
85
  config: {
137
- title: "🎴 Pre-Order Incoming Sets",
138
- subtitle: "Reserve the next wave of Base Set reprints and sealed product before they ship",
86
+ title: "🎴 Reserve Before They Ship",
87
+ subtitle: "Pre-order upcoming sets, sealed products, and new releases across all franchises",
139
88
  maxItems: 18,
140
89
  rows: 2,
141
90
  itemsPerRow: 3,
@@ -146,225 +95,54 @@ export const pokemonHomepageSectionsSeedData = [
146
95
  createdAt: daysAgo(14),
147
96
  updatedAt: daysAgo(1),
148
97
  },
149
- // -- 7. Live Auctions ------------------------------------------------------
150
- {
151
- id: "section-auctions-pokemon-1707300000007",
152
- type: "auctions",
153
- order: 7,
154
- enabled: true,
155
- config: {
156
- title: "🔥 Live Auctions",
157
- subtitle: "Bid on graded slabs and ultra-rare Base Set cards",
158
- maxAuctions: 18,
159
- rows: 2,
160
- itemsPerRow: 3,
161
- mobileItemsPerRow: 1,
162
- autoScroll: false,
163
- scrollInterval: 4000,
164
- },
165
- createdAt: daysAgo(30),
166
- updatedAt: daysAgo(1),
167
- },
168
- // -- 8. Promotional Banner — Charizard -------------------------------------
98
+ // -- 5. Trust Indicators + Stats ----------------------------------------------
169
99
  {
170
- id: "section-banner-pokemon-1707300000008",
171
- type: "banner",
172
- order: 8,
100
+ id: "section-trust-stats-multifranchise-5",
101
+ type: "trust-indicators",
102
+ order: 5,
173
103
  enabled: true,
174
104
  config: {
175
- height: "md",
176
- gradient: "linear-gradient(135deg, #FF6B35 0%, #F7C59F 50%, #FFCB05 100%)",
177
- content: {
178
- title: "The Holy Grail is Here",
179
- subtitle: "1st Edition Charizard — PSA 7 — Live Auction",
180
- description: "Current bid ₹3,49,999 · 7 days remaining · Buy Now at ₹6,99,999",
181
- },
182
- buttons: [
105
+ title: "Why Collectors Choose LetItRip",
106
+ indicators: [
183
107
  {
184
- text: "Bid Now",
185
- link: "/auctions",
186
- variant: "primary",
108
+ id: "trust_auth",
109
+ icon: "🔍",
110
+ title: "Authenticity Guaranteed",
111
+ description: "Every item inspected and verified before listing",
187
112
  },
188
113
  {
189
- text: "All Auctions",
190
- link: "/auctions",
191
- variant: "secondary",
114
+ id: "trust_ship",
115
+ icon: "📦",
116
+ title: "Safe Packaging",
117
+ description: "Cards in top-loaders, toys in foam-lined boxes — fully tracked",
118
+ },
119
+ {
120
+ id: "trust_grade",
121
+ icon: "🏆",
122
+ title: "PSA / BGS Graded",
123
+ description: "Certified graded slabs with authentic serial numbers",
124
+ },
125
+ {
126
+ id: "trust_pay",
127
+ icon: "💳",
128
+ title: "Secure Payments",
129
+ description: "Razorpay-powered checkout — UPI, Cards, EMI available",
130
+ },
131
+ {
132
+ id: "trust_sellers",
133
+ icon: "✅",
134
+ title: "Verified Sellers",
135
+ description: "All sellers KYC-verified with track record reviews",
136
+ },
137
+ {
138
+ id: "trust_return",
139
+ icon: "↩️",
140
+ title: "Buyer Protection",
141
+ description: "7-day return policy on eligible items — no questions asked",
192
142
  },
193
143
  ],
194
- clickable: true,
195
- clickLink: "/auctions",
196
- },
197
- createdAt: daysAgo(3),
198
- updatedAt: daysAgo(0),
199
- },
200
- // -- 9. Features / Why Us --------------------------------------------------
201
- {
202
- id: "section-features-pokemon-1707300000009",
203
- type: "features",
204
- order: 9,
205
- enabled: true,
206
- config: {
207
- title: "Everything a Pokémon Collector Needs",
208
- features: ["feature_001", "feature_002", "feature_003", "feature_004"],
209
- },
210
- createdAt: daysAgo(30),
211
- updatedAt: daysAgo(1),
212
- },
213
- // -- 10. Reviews ----------------------------------------------------------
214
- {
215
- id: "section-reviews-pokemon-1707300000010",
216
- type: "reviews",
217
- order: 10,
218
- enabled: true,
219
- config: {
220
- title: "What Trainers Are Saying",
221
- maxReviews: 18,
222
- itemsPerView: 3,
223
- mobileItemsPerView: 1,
224
- autoScroll: true,
225
- scrollInterval: 5000,
226
- },
227
- createdAt: daysAgo(30),
228
- updatedAt: daysAgo(1),
229
- },
230
- // -- 11. WhatsApp Community -----------------------------------------------
231
- {
232
- id: "section-whatsapp-community-pokemon-1707300000011",
233
- type: "whatsapp-community",
234
- order: 11,
235
- enabled: true,
236
- config: {
237
- title: "Join the Pokémon Collectors Community",
238
- description: "Connect with 500+ Pokémon TCG collectors in India. Get price alerts, trading tips, and early access to new listings.",
239
- groupLink: "https://chat.whatsapp.com/pokemon-collectors-india",
240
- memberCount: 512,
241
- benefits: [
242
- "📢 New listing alerts",
243
- "💰 Price tracking & trend reports",
244
- "🎁 Exclusive early access to rare cards",
245
- "🤝 Trusted trading among verified members",
246
- ],
247
- buttonText: "Join Now (Free)",
248
- },
249
- createdAt: daysAgo(30),
250
- updatedAt: daysAgo(1),
251
- },
252
- // -- 12. FAQ --------------------------------------------------------------
253
- {
254
- id: "section-faq-pokemon-1707300000012",
255
- type: "faq",
256
- order: 12,
257
- enabled: true,
258
- config: {
259
- title: "Frequently Asked Questions",
260
- subtitle: "Everything you need to know about buying and selling Pokémon cards on LetItRip",
261
- showOnHomepage: true,
262
- displayCount: 6,
263
- expandedByDefault: false,
264
- linkToFullPage: true,
265
- categories: ["products", "sellers", "general", "shipping"],
266
- },
267
- createdAt: daysAgo(30),
268
- updatedAt: daysAgo(1),
269
- },
270
- // -- 13. Blog Articles ----------------------------------------------------
271
- {
272
- id: "section-blog-articles-pokemon-1707300000013",
273
- type: "blog-articles",
274
- order: 13,
275
- enabled: true,
276
- config: {
277
- title: "From the Collectors' Corner",
278
- subtitle: "Card grading guides, market trends, and Base Set deep dives",
279
- maxArticles: 4,
280
- showReadTime: true,
281
- showAuthor: true,
282
- showThumbnails: true,
283
- },
284
- createdAt: daysAgo(30),
285
- updatedAt: daysAgo(1),
286
- },
287
- // -- 14. Newsletter -------------------------------------------------------
288
- {
289
- id: "section-newsletter-pokemon-1707300000014",
290
- type: "newsletter",
291
- order: 14,
292
- enabled: true,
293
- config: {
294
- title: "Stay Ahead of the Rares",
295
- description: "Get weekly price updates, new listing alerts, and exclusive deals delivered straight to your inbox.",
296
- placeholder: "Enter your email address",
297
- buttonText: "Subscribe",
298
- privacyText: "No spam. Unsubscribe anytime.",
299
- privacyLink: "/privacy",
300
- },
301
- createdAt: daysAgo(30),
302
- updatedAt: daysAgo(1),
303
- },
304
- // -- 15. Stores -----------------------------------------------------------
305
- {
306
- id: "section-stores-pokemon-1707300000015",
307
- type: "stores",
308
- order: 15,
309
- enabled: true,
310
- config: {
311
- title: "Meet Our Top Sellers",
312
- subtitle: "Verified Pokémon card specialists — Gym Leaders of the marketplace",
313
- maxStores: 12,
314
- autoScroll: true,
315
- scrollInterval: 4000,
316
- },
317
- createdAt: daysAgo(30),
318
- updatedAt: daysAgo(1),
319
- },
320
- // -- 16. Events (disabled) ------------------------------------------------
321
- {
322
- id: "section-events-pokemon-1707300000016",
323
- type: "events",
324
- order: 16,
325
- enabled: false,
326
- config: {
327
- title: "Upcoming Pokémon Events",
328
- subtitle: "Pre-releases, draft tournaments and collector meetups",
329
- maxEvents: 12,
330
- autoScroll: false,
331
- scrollInterval: 4000,
332
144
  },
333
145
  createdAt: daysAgo(30),
334
146
  updatedAt: daysAgo(1),
335
147
  },
336
- // -- 17. Brands (disabled) ------------------------------------------------
337
- {
338
- id: "section-brands-pokemon-1707300000017",
339
- type: "brands",
340
- order: 17,
341
- enabled: false,
342
- config: {
343
- title: "Shop by Brand",
344
- subtitle: "WOTC, Wizards of the Coast, The Pokémon Company — explore by publisher",
345
- maxBrands: 8,
346
- autoScroll: true,
347
- scrollInterval: 4000,
348
- },
349
- createdAt: daysAgo(14),
350
- updatedAt: daysAgo(1),
351
- },
352
- // -- 18. Stats counter -------------------------------------------------------
353
- {
354
- id: "section-stats-pokemon-1707300000018",
355
- type: "stats",
356
- order: 18,
357
- enabled: true,
358
- config: {
359
- title: "Trusted by Collectors Across India",
360
- stats: [
361
- { key: "products", label: "Products Listed", value: "10,000+" },
362
- { key: "sellers", label: "Verified Sellers", value: "2,000+" },
363
- { key: "buyers", label: "Happy Buyers", value: "50,000+" },
364
- { key: "rating", label: "Avg. Rating", value: "4.8/5" },
365
- ],
366
- },
367
- createdAt: daysAgo(14),
368
- updatedAt: daysAgo(1),
369
- },
370
148
  ];