@mohasinac/appkit 2.7.53 → 2.7.54

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 (123) hide show
  1. package/dist/_internal/client/features/layout/DashboardLayoutClient.js +1 -1
  2. package/dist/_internal/server/jobs/core/auctionSettlement.js +6 -3
  3. package/dist/_internal/server/jobs/core/bundleStockSync.js +9 -7
  4. package/dist/_internal/server/jobs/core/onProductStockChange.d.ts +12 -3
  5. package/dist/_internal/server/jobs/core/onProductStockChange.js +12 -13
  6. package/dist/_internal/server/jobs/core/onProductWrite.js +1 -3
  7. package/dist/_internal/server/jobs/handlers/onProductStockChange.js +11 -2
  8. package/dist/client.d.ts +2 -0
  9. package/dist/client.js +1 -0
  10. package/dist/constants/field-names.d.ts +4 -3
  11. package/dist/constants/field-names.js +8 -8
  12. package/dist/errors/error-codes.d.ts +3 -0
  13. package/dist/errors/error-codes.js +3 -0
  14. package/dist/errors/messages.d.ts +3 -0
  15. package/dist/errors/messages.js +3 -0
  16. package/dist/features/admin/types/product.types.d.ts +1 -1
  17. package/dist/features/admin/types/product.types.js +2 -3
  18. package/dist/features/auctions/actions/bid-actions.d.ts +9 -0
  19. package/dist/features/auctions/actions/bid-actions.js +61 -0
  20. package/dist/features/auctions/components/AuctionDetailPageView.d.ts +2 -1
  21. package/dist/features/auctions/components/AuctionDetailPageView.js +5 -4
  22. package/dist/features/auctions/components/PlaceBidFormClient.d.ts +3 -1
  23. package/dist/features/auctions/components/PlaceBidFormClient.js +32 -2
  24. package/dist/features/auctions/types/index.d.ts +1 -1
  25. package/dist/features/layout/AppLayoutShell.js +1 -1
  26. package/dist/features/pre-orders/components/PreOrdersIndexListing.js +2 -11
  27. package/dist/features/products/api/[id]/route.js +4 -8
  28. package/dist/features/products/api/route.js +1 -3
  29. package/dist/features/products/components/AuctionsIndexListing.js +3 -11
  30. package/dist/features/products/components/PrizeDrawsIndexListing.js +2 -10
  31. package/dist/features/products/components/ProductFilters.d.ts +33 -9
  32. package/dist/features/products/components/ProductFilters.js +6 -29
  33. package/dist/features/products/components/ProductForm.js +2 -3
  34. package/dist/features/products/constants/sieve.d.ts +162 -0
  35. package/dist/features/products/constants/sieve.js +95 -0
  36. package/dist/features/products/repository/products.repository.d.ts +5 -0
  37. package/dist/features/products/repository/products.repository.js +23 -3
  38. package/dist/features/products/schemas/firestore.d.ts +4 -4
  39. package/dist/features/products/schemas/firestore.js +2 -3
  40. package/dist/features/products/schemas/index.d.ts +6 -6
  41. package/dist/features/products/schemas/index.js +2 -6
  42. package/dist/features/products/types/index.d.ts +1 -1
  43. package/dist/features/seller/actions/offer-actions.js +2 -2
  44. package/dist/features/wishlist/types/index.d.ts +1 -1
  45. package/dist/index.d.ts +6 -3
  46. package/dist/index.js +6 -4
  47. package/dist/seed/addresses-seed-data.d.ts +2 -18
  48. package/dist/seed/addresses-seed-data.js +137 -203
  49. package/dist/seed/bids-seed-data.d.ts +2 -8
  50. package/dist/seed/bids-seed-data.js +172 -648
  51. package/dist/seed/blog-posts-seed-data.d.ts +0 -5
  52. package/dist/seed/blog-posts-seed-data.js +341 -596
  53. package/dist/seed/carousel-slides-seed-data.d.ts +0 -5
  54. package/dist/seed/carousel-slides-seed-data.js +61 -192
  55. package/dist/seed/carousels-seed-data.js +18 -1
  56. package/dist/seed/cart-seed-data.d.ts +1 -18
  57. package/dist/seed/cart-seed-data.js +116 -293
  58. package/dist/seed/categories-seed-data.d.ts +0 -6
  59. package/dist/seed/categories-seed-data.js +1409 -1537
  60. package/dist/seed/claimed-coupons-seed-data.d.ts +0 -11
  61. package/dist/seed/claimed-coupons-seed-data.js +32 -29
  62. package/dist/seed/conversations-seed-data.d.ts +0 -6
  63. package/dist/seed/conversations-seed-data.js +132 -280
  64. package/dist/seed/coupon-usage-seed-data.d.ts +0 -16
  65. package/dist/seed/coupon-usage-seed-data.js +30 -44
  66. package/dist/seed/coupons-seed-data.d.ts +0 -6
  67. package/dist/seed/coupons-seed-data.js +141 -489
  68. package/dist/seed/events-seed-data.d.ts +0 -6
  69. package/dist/seed/events-seed-data.js +201 -379
  70. package/dist/seed/faq-seed-data.d.ts +0 -14
  71. package/dist/seed/faq-seed-data.js +609 -1184
  72. package/dist/seed/grouped-listings-seed-data.d.ts +119 -8
  73. package/dist/seed/grouped-listings-seed-data.js +148 -233
  74. package/dist/seed/history-seed-data.d.ts +0 -7
  75. package/dist/seed/history-seed-data.js +50 -54
  76. package/dist/seed/homepage-sections-seed-data.d.ts +0 -5
  77. package/dist/seed/homepage-sections-seed-data.js +83 -175
  78. package/dist/seed/index.d.ts +1 -1
  79. package/dist/seed/index.js +1 -1
  80. package/dist/seed/manifest.js +2 -2
  81. package/dist/seed/notifications-seed-data.d.ts +0 -6
  82. package/dist/seed/notifications-seed-data.js +309 -196
  83. package/dist/seed/offers-seed-data.d.ts +0 -8
  84. package/dist/seed/offers-seed-data.js +118 -197
  85. package/dist/seed/orders-seed-data.d.ts +2 -8
  86. package/dist/seed/orders-seed-data.js +248 -1510
  87. package/dist/seed/payouts-seed-data.d.ts +0 -6
  88. package/dist/seed/payouts-seed-data.js +102 -441
  89. package/dist/seed/products-auctions-seed-data.d.ts +1 -14
  90. package/dist/seed/products-auctions-seed-data.js +612 -1084
  91. package/dist/seed/products-preorders-seed-data.d.ts +119 -14
  92. package/dist/seed/products-preorders-seed-data.js +154 -455
  93. package/dist/seed/products-standard-seed-data.d.ts +1 -15
  94. package/dist/seed/products-standard-seed-data.js +1355 -4128
  95. package/dist/seed/reviews-seed-data.d.ts +2 -8
  96. package/dist/seed/reviews-seed-data.js +99 -1182
  97. package/dist/seed/scammers-seed-data.d.ts +0 -15
  98. package/dist/seed/scammers-seed-data.js +36 -37
  99. package/dist/seed/sessions-seed-data.d.ts +0 -13
  100. package/dist/seed/sessions-seed-data.js +58 -335
  101. package/dist/seed/site-settings-seed-data.d.ts +0 -4
  102. package/dist/seed/site-settings-seed-data.js +61 -52
  103. package/dist/seed/store-addresses-seed-data.js +27 -151
  104. package/dist/seed/store-extensions-seed-data.d.ts +0 -7
  105. package/dist/seed/store-extensions-seed-data.js +147 -261
  106. package/dist/seed/stores-seed-data.d.ts +0 -5
  107. package/dist/seed/stores-seed-data.js +222 -184
  108. package/dist/seed/sub-listings-seed-data.d.ts +119 -0
  109. package/dist/seed/sub-listings-seed-data.js +447 -0
  110. package/dist/seed/support-tickets-seed-data.d.ts +0 -7
  111. package/dist/seed/support-tickets-seed-data.js +82 -75
  112. package/dist/seed/users-seed-data.d.ts +0 -5
  113. package/dist/seed/users-seed-data.js +279 -634
  114. package/dist/seed/wishlists-seed-data.d.ts +0 -9
  115. package/dist/seed/wishlists-seed-data.js +36 -52
  116. package/dist/seo/json-ld.js +6 -4
  117. package/dist/styles.css +8052 -3
  118. package/dist/utils/index.d.ts +1 -0
  119. package/dist/utils/index.js +1 -0
  120. package/dist/utils/search-tokens.d.ts +2 -0
  121. package/dist/utils/search-tokens.js +21 -0
  122. package/package.json +2 -2
  123. package/scripts/seed-cli.mjs +2 -2
@@ -1,688 +1,433 @@
1
- /**
2
- * Blog Posts Seed Data LetItRip Collectibles Platform
3
- * 8 posts covering Pokémon TCG, Hot Wheels, Beyblade X, Yu-Gi-Oh!, Gundam,
4
- * Funko Pop, Tomica, and authentication. blog- prefix, id === slug.
1
+ /*
2
+ * WHY: Seeds 20 blog posts for LetItRip collectibles marketplace — content/SEO testing across all categories.
3
+ * WHAT: 17 published + 2 draft + 1 archived. Mix of YGO-specific, broader collectibles (Pokémon, Hot Wheels,
4
+ * Beyblade, Gundam, Funko), marketplace guides, and community stories.
5
+ *
6
+ * EXPORTS:
7
+ * blogPostsSeedData — Array of Partial<BlogPostDocument> for seed runner
8
+ *
9
+ * @tag domain:blog
10
+ * @tag layer:seed
11
+ * @tag pattern:none
12
+ * @tag access:server-only
13
+ * @tag consumers:seed/index.ts,seed/runner.ts,SeedPanel
14
+ * @tag sideEffects:none
5
15
  */
6
- import { BLOG_POST_FIELDS } from "../features/blog/schemas";
7
16
  const NOW = new Date();
8
17
  const daysAgo = (n) => new Date(NOW.getTime() - n * 86400000);
9
18
  export const blogPostsSeedData = [
10
- // ── 1. Grading Guide (featured) ──────────────────────────────────────────
19
+ // ── GUIDES (6) ────────────────────────────────────────────────────────────
11
20
  {
12
- id: "blog-how-to-grade-pokemon-cards-psa-bgs-guide",
13
- slug: "blog-how-to-grade-pokemon-cards-psa-bgs-guide",
14
- title: "How to Grade Your Pokémon Cards — PSA vs. BGS Complete Guide",
15
- excerpt: "Sending a card to PSA or BGS can turn a raw Near Mint copy into a certified slab worth 3–10× more. Here is everything you need to know before your first submission.",
16
- content: `<h2>Why Grade?</h2>
17
- <p>A PSA 10 Gem Mint 1st Edition Charizard can fetch ₹80 lakh at auction while a raw NM copy of the same card trades around ₹1.2 lakh. Grading is authentication, preservation, and valuation in one step.</p>
18
- <h2>PSA vs. BGS — Which to Choose?</h2>
19
- <p><strong>PSA (Professional Sports Authenticator)</strong> is the gold standard for vintage Pokémon. PSA 10s command the highest premiums on the secondary market. PSA grades on a 1–10 scale with a single composite grade. Turnaround: 45–90 days for economy tier.</p>
20
- <p><strong>BGS (Beckett Grading Services)</strong> gives four sub-grades: Centering, Corners, Edges, and Surface. A BGS 9.5 Pristine or 10 Black Label is considered superior to a PSA 10 by many collectors. BGS grades are easier to dispute visually since sub-grades are listed.</p>
21
- <h2>How to Prepare Your Cards</h2>
22
- <ol>
23
- <li>Handle only by edges — never touch the face or back.</li>
24
- <li>Inspect under bright LED light at 45° angle for print lines, scratches, and whitening on corners.</li>
25
- <li>Sleeve immediately in a penny sleeve, then a perfect-fit sleeve, then a toploader.</li>
26
- <li>Pack cards in card saver I holders for submission (PSA requires these).</li>
27
- </ol>
28
- <h2>Grading Tiers and Costs</h2>
29
- <p>PSA Economy (₹4,500/card, 45 days), PSA Regular (₹8,200/card, 20 days), BGS Regular (₹5,000/card, 20 days). Always insure high-value submissions. Cards valued over ₹50,000 should go Regular tier for faster return and better customer service if lost.</p>
30
- <h2>What Grade Can I Expect?</h2>
31
- <p>Modern cards printed after 2016 (Sun & Moon onwards) grade well — print quality improved significantly. Base Set and Jungle cards have machine crimps on edges that commonly result in PSA 8 or 9. A PSA 9 vintage card is excellent; a PSA 10 vintage is exceptional and rare.</p>
32
- <h2>Submitting from India</h2>
33
- <p>Use PSA's authorised Indian submitter or a collector group submission. Declare value accurately on customs forms. Expect 2–4 weeks additional transit time on top of grading turnaround. Returns are insured by the grader up to declared value.</p>`,
34
- coverImage: "https://images.unsplash.com/photo-1606107557195-0e29a4b5b4aa?w=1200&h=630&fit=crop",
35
- category: BLOG_POST_FIELDS.CATEGORY_VALUES.GUIDES,
36
- tags: ["grading", "psa", "bgs", "pokemon-cards", "how-to"],
21
+ id: "blog-identify-1st-edition-yugioh",
22
+ title: "How to Identify 1st Edition Yu-Gi-Oh! Cards",
23
+ slug: "identify-1st-edition-yugioh",
24
+ excerpt: "Learn the telltale signs that distinguish a genuine 1st Edition print from Unlimited from the gold stamp placement to the eye of Anubis hologram.",
25
+ content: `<h2>The Gold Stamp</h2><p>1st Edition Yu-Gi-Oh! cards feature a gold "1st Edition" stamp below the artwork on the left side. On LOB (Legend of Blue Eyes White Dragon) cards from 2002, this stamp is slightly larger than later sets.</p><h2>Eye of Anubis</h2><p>Starting with LOB Unlimited, Konami added the Eye of Anubis hologram to the bottom-right corner. 1st Edition LOB cards do NOT have this hologram — that's actually a sign of authenticity for the earliest prints.</p><h2>Font Differences</h2><p>Compare the font weight of the card name. 1st Edition prints from the early Duel Monsters era often have slightly bolder text than their Unlimited counterparts.</p>`,
26
+ coverImage: { type: "image", url: "https://images.ygoprodeck.com/images/cards/cropped/46986414.jpg", alt: "Dark Magician card art" },
27
+ category: "guides",
28
+ tags: ["1st-edition", "authentication", "grading", "ygo"],
37
29
  isFeatured: true,
38
- status: BLOG_POST_FIELDS.STATUS_VALUES.PUBLISHED,
39
- publishedAt: daysAgo(62),
30
+ status: "published",
31
+ publishedAt: daysAgo(30),
40
32
  authorId: "user-admin-letitrip",
41
33
  authorName: "LetItRip Admin",
42
- readTimeMinutes: 8,
43
- views: 5420,
44
- metaTitle: "How to Grade Pokémon Cards — PSA vs BGS Guide | LetItRip",
45
- metaDescription: "Complete guide to grading Pokémon cards with PSA and BGS — costs, preparation, what grade to expect, and how to submit from India.",
46
- createdAt: daysAgo(65),
47
- updatedAt: daysAgo(62),
48
- },
49
- // ── 2. Top 10 Hot Wheels Chase Cars ─────────────────────────────────────
50
- {
51
- id: "blog-top-10-hot-wheels-chase-cars-2025",
52
- slug: "blog-top-10-hot-wheels-chase-cars-2025",
53
- title: "Top 10 Hot Wheels Chase Cars of 2025 (Super Treasure Hunts)",
54
- excerpt: "Super Treasure Hunts are the holy grail of Hot Wheels collecting. Here are the 10 most sought-after STHs of 2025 and what they're trading for in India.",
55
- content: `<h2>What is a Super Treasure Hunt?</h2>
56
- <p>Mattel seeds roughly 1 in every 10,000 Hot Wheels cards with a Super Treasure Hunt (STH) — identified by Spectraflame metallic paint, Real Rider rubber tyres, and a gold $$TH$$ logo on the blister. In India, a standard mainline car costs ₹100–130; an STH of the same casting can trade for ₹800–5,000 depending on the casting.</p>
57
- <h2>2025's Most Valuable STHs</h2>
58
- <ol>
59
- <li><strong>Custom '69 Camaro STH</strong> — Spectraflame red, Real Riders, ₹3,200–4,800</li>
60
- <li><strong>Bone Shaker STH</strong> — Spectraflame purple, ₹2,800–4,200</li>
61
- <li><strong>Dodge Challenger Demon STH</strong> — Spectraflame orange, ₹2,200–3,500</li>
62
- <li><strong>Twin Mill STH</strong> — Spectraflame blue, ₹2,000–3,200</li>
63
- <li><strong>Corvette C8 STH</strong> — Spectraflame green, ₹1,800–2,800</li>
64
- <li><strong>Ford GT Heritage STH</strong> — Spectraflame white, ₹1,600–2,500</li>
65
- <li><strong>Nissan Skyline GT-R STH</strong> — Spectraflame silver, ₹1,400–2,200</li>
66
- <li><strong>Hot Wheels Racing Circuit STH</strong> — Spectraflame yellow, ₹1,200–2,000</li>
67
- <li><strong>Datsun 240Z STH</strong> — Spectraflame teal, ₹1,100–1,800</li>
68
- <li><strong>McLaren Senna STH</strong> — Spectraflame copper, ₹1,000–1,600</li>
69
- </ol>
70
- <h2>How to Hunt for STHs in India</h2>
71
- <p>Check the bottom of each card for the $$TH$$ symbol before purchasing. Most Indian retailers receive mixed cases — visit stores on restock day (usually Tuesday or Wednesday). Many collectors source directly from Japan via proxy services for Japanese-exclusive castings.</p>
72
- <h2>Protecting Your STHs</h2>
73
- <p>Store carded STHs in Premium Card Protectors (UV resistant, 6mm thick). Never remove from blister — a carded STH is worth 2–5× a loose one. Stack horizontally with acid-free foam separators.</p>`,
74
- coverImage: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=1200&h=630&fit=crop",
75
- category: BLOG_POST_FIELDS.CATEGORY_VALUES.GUIDES,
76
- tags: ["hot-wheels", "super-treasure-hunt", "sth", "diecast", "collecting"],
77
- isFeatured: true,
78
- status: BLOG_POST_FIELDS.STATUS_VALUES.PUBLISHED,
79
- publishedAt: daysAgo(47),
80
- authorId: "user-vikram-mehta",
81
- authorName: "Vikram Mehta",
82
- readTimeMinutes: 6,
83
- views: 3180,
84
- metaTitle: "Top 10 Hot Wheels Super Treasure Hunts 2025 | LetItRip",
85
- metaDescription: "The 10 most valuable Hot Wheels Super Treasure Hunts of 2025 — Spectraflame paint, Real Riders, and prices in India.",
86
- createdAt: daysAgo(50),
87
- updatedAt: daysAgo(47),
34
+ authorAvatar: "https://images.ygoprodeck.com/images/cards/cropped/33396948.jpg",
35
+ readTimeMinutes: 5,
36
+ views: 4200,
37
+ metaTitle: "How to Identify 1st Edition Yu-Gi-Oh! Cards | LetItRip",
38
+ metaDescription: "Learn how to spot genuine 1st Edition YGO cards — gold stamps, Eye of Anubis, font differences, and more.",
39
+ createdAt: daysAgo(35),
40
+ updatedAt: daysAgo(30),
88
41
  },
89
- // ── 3. Beyblade X Beginner's Guide ───────────────────────────────────────
90
42
  {
91
- id: "blog-beyblade-x-beginners-guide-2026",
92
- slug: "blog-beyblade-x-beginners-guide-2026",
93
- title: "Ultimate Beyblade X Beginner's Guide — Parts, Combos & Tournaments",
94
- excerpt: "Beyblade X launched in 2023 and has taken India by storm. Here is everything you need to know: the new XStadium, gear system, best starter combos, and how to enter your first tournament.",
95
- content: `<h2>What is Beyblade X?</h2>
96
- <p>Beyblade X (BX) is the fourth generation of the Beyblade franchise from Takara Tomy. The signature feature is the <strong>Xtreme Dash</strong> — a gear inside the blade that creates a sudden burst of speed when the bit clicks into a groove on the XStadium wall. Battles are faster, more explosive, and more skill-dependent than Burst.</p>
97
- <h2>Understanding BX Parts</h2>
98
- <ul>
99
- <li><strong>Blade</strong> — the main top. Determines attack pattern and weight distribution.</li>
100
- <li><strong>Ratchet</strong> — connects blade to bit. Numbers (3-60, 4-60, 5-60) indicate teeth count and height in mm.</li>
101
- <li><strong>Bit</strong> — the tip that touches the stadium floor. FP (Flat Point) for attack, GP (Gear Point) for Xtreme Dash activation, HN (High Needle) for stamina.</li>
102
- </ul>
103
- <h2>Best Starter Combos in 2026</h2>
104
- <p><strong>Attack</strong>: Dran Sword 4-60F (BX-01) — aggressive launch, targets the stadium groove repeatedly.<br>
105
- <strong>Stamina</strong>: Wizard Arrow 4-80B — wide blade, low tip maintains long spin.<br>
106
- <strong>Balance</strong>: Knight Shield 3-80N — defensive blade with good burst resistance.</p>
107
- <h2>How to Enter an Indian Tournament</h2>
108
- <p>Official Beyblade X tournaments are organised by Takara Tomy's Indian distributor through LetItRip and local hobby shops. Tournaments use the Standard Stadium format — 3-minute battle, best of 3. Register through the Events section on LetItRip. Bring your official BX tops — bootlegs are disqualified on inspection.</p>`,
109
- coverImage: "https://images.unsplash.com/photo-1551698618-1dfe5d97d256?w=1200&h=630&fit=crop",
110
- category: BLOG_POST_FIELDS.CATEGORY_VALUES.GUIDES,
111
- tags: ["beyblade-x", "beyblade", "beginner-guide", "takara-tomy", "bx"],
43
+ id: "blog-psa-vs-bgs-vs-cgc",
44
+ title: "PSA vs BGS vs CGC — Which Grading Service for Your Cards?",
45
+ slug: "psa-vs-bgs-vs-cgc",
46
+ excerpt: "A head-to-head comparison of the three major card grading services and which one commands the highest premiums in the trading card market.",
47
+ content: `<h2>PSA — The Industry Standard</h2><p>PSA (Professional Sports Authenticator) is the most widely recognized grading service. A PSA 10 "Gem Mint" commands the highest resale premiums, especially for vintage cards from any TCG.</p><h2>BGS — The Sub-Grade King</h2><p>Beckett Grading Services provides sub-grades for centering, surface, edges, and corners. A BGS 10 "Pristine" is incredibly rare, and a BGS 10 "Black Label" (all sub-grades 10) is the holy grail.</p><h2>CGC — The Newcomer</h2><p>CGC entered the trading card market more recently. They also offer sub-grades and their slabs have a modern, clean design. CGC is growing in popularity but PSA still dominates resale value.</p><h2>Our Recommendation</h2><p>For investment: PSA 10 commands the highest resale value. For personal collection with detailed condition analysis: BGS. For budget grading: CGC.</p>`,
48
+ coverImage: { type: "image", url: "https://images.ygoprodeck.com/images/cards/cropped/33396948.jpg", alt: "Exodia the Forbidden One" },
49
+ category: "guides",
50
+ tags: ["grading", "psa", "bgs", "cgc", "trading-cards", "investment"],
112
51
  isFeatured: true,
113
- status: BLOG_POST_FIELDS.STATUS_VALUES.PUBLISHED,
114
- publishedAt: daysAgo(38),
115
- authorId: "user-rohit-joshi",
116
- authorName: "Rohit Joshi",
52
+ status: "published",
53
+ publishedAt: daysAgo(25),
54
+ authorId: "user-admin-letitrip",
55
+ authorName: "LetItRip Admin",
56
+ authorAvatar: "https://images.ygoprodeck.com/images/cards/cropped/33396948.jpg",
117
57
  readTimeMinutes: 7,
118
- views: 4210,
119
- metaTitle: "Beyblade X Beginner's Guide 2026Parts, Combos & Tournaments | LetItRip",
120
- metaDescription: "Complete beginner's guide to Beyblade X XStadium, blade parts, Xtreme Dash, best starter combos, and how to enter Indian tournaments.",
121
- createdAt: daysAgo(40),
122
- updatedAt: daysAgo(38),
58
+ views: 3800,
59
+ metaTitle: "PSA vs BGS vs CGCBest Card Grading Services | LetItRip",
60
+ metaDescription: "Compare PSA, BGS, and CGC grading services for trading cards premiums, turnaround, and which to choose.",
61
+ createdAt: daysAgo(28),
62
+ updatedAt: daysAgo(25),
123
63
  },
124
- // ── 4. Yu-Gi-Oh! Deck Building 101 ──────────────────────────────────────
125
64
  {
126
- id: "blog-yugioh-deck-building-101-beginners",
127
- slug: "blog-yugioh-deck-building-101-beginners",
128
- title: "Yu-Gi-Oh! Deck Building 101 — From Core Rules to Competitive Play",
129
- excerpt: "Building your first Yu-Gi-Oh! deck can be overwhelming. Here's a structured guide from choosing an archetype to making your first tournament-legal 40-card deck.",
130
- content: `<h2>The Golden Rule: 40 Cards</h2>
131
- <p>Every competitive Yu-Gi-Oh! deck runs exactly 40 cards. More cards means lower consistency — you draw key pieces less often. Exceptions exist (60-card Pile formats) but start at 40.</p>
132
- <h2>Deck Structure</h2>
133
- <ul>
134
- <li><strong>Main Deck</strong>: 40–60 cards (start at 40)</li>
135
- <li><strong>Extra Deck</strong>: 0–15 Fusion/Synchro/XYZ/Link monsters</li>
136
- <li><strong>Side Deck</strong>: 0–15 cards (for post-game 2 adjustments in tournament play)</li>
137
- </ul>
138
- <h2>Choosing Your First Archetype</h2>
139
- <p><strong>Blue-Eyes White Dragon</strong>: Classic, powerful, tons of support. Relatively affordable.<br>
140
- <strong>Dark Magician</strong>: Spell-heavy, good for learning card interactions.<br>
141
- <strong>Sky Striker</strong>: Modern, Spell-based, single monster strategy. Teaches resource management.<br>
142
- <strong>Branded Despia</strong>: 2024's most popular. High ceiling, deep combo potential.</p>
143
- <h2>Card Rarity and Budget</h2>
144
- <p>Structure Decks (₹799–999) are the best starting point — 3 copies of key cards for a single archetype. One structure deck often includes most of the main engine. Buy 3 copies of the same structure deck for a complete playset of all common cards.</p>
145
- <h2>Building a Competitive Hand Trap Package</h2>
146
- <p>Every competitive deck runs 6–9 hand traps. Ash Blossom & Joyous Spring (₹800–1,200), Nibiru the Primal Being (₹500–800), and Effect Veiler (₹200–400) are the three must-haves regardless of archetype.</p>`,
147
- coverImage: "https://images.unsplash.com/photo-1612036782180-6f0b6cd846fe?w=1200&h=630&fit=crop",
148
- category: BLOG_POST_FIELDS.CATEGORY_VALUES.GUIDES,
149
- tags: ["yugioh", "deck-building", "tcg", "konami", "trading-cards"],
150
- isFeatured: true,
151
- status: BLOG_POST_FIELDS.STATUS_VALUES.PUBLISHED,
152
- publishedAt: daysAgo(30),
153
- authorId: "user-nisha-reddy",
154
- authorName: "Nisha Reddy",
155
- readTimeMinutes: 6,
156
- views: 2870,
157
- metaTitle: "Yu-Gi-Oh! Deck Building 101 for Beginners | LetItRip",
158
- metaDescription: "Learn how to build your first Yu-Gi-Oh! deck from scratch — 40-card rule, archetypes, budget tips, and hand trap essentials.",
159
- createdAt: daysAgo(32),
160
- updatedAt: daysAgo(30),
65
+ id: "blog-complete-exodia-guide",
66
+ title: "Complete Exodia Guide — All Printings and Values",
67
+ slug: "complete-exodia-guide",
68
+ excerpt: "Every printing of Exodia the Forbidden One and its four limbs from the original LOB 1st Edition to the latest reprint, with current market values.",
69
+ content: `<h2>The Original Five</h2><p>Exodia the Forbidden One (33396948), Left Arm (07902349), Right Arm (70903634), Left Leg (44519536), and Right Leg (08124921). Completing the set in your hand is an instant win — and completing a 1st Edition PSA 10 set is the ultimate flex.</p><h2>LOB 1st Edition (2002)</h2><p>The holy grail. Each piece in PSA 10 ranges from ₹3–5 lakh. A complete set? Over ₹20 lakh.</p><h2>Later Printings</h2><p>Unlimited LOB, Retro Pack, Lost Art Promotion, and various structure deck reprints. Values range from ₹500 for common reprints to ₹50,000+ for rare promotional versions.</p>`,
70
+ coverImage: { type: "image", url: "https://images.ygoprodeck.com/images/cards/cropped/33396948.jpg", alt: "Exodia the Forbidden One" },
71
+ category: "guides",
72
+ tags: ["exodia", "guide", "printings", "values", "ygo"],
73
+ isFeatured: false,
74
+ status: "draft",
75
+ authorId: "user-admin-letitrip",
76
+ authorName: "LetItRip Admin",
77
+ authorAvatar: "https://images.ygoprodeck.com/images/cards/cropped/33396948.jpg",
78
+ readTimeMinutes: 10,
79
+ views: 0,
80
+ metaTitle: "Complete Exodia Guide All Printings & Values | LetItRip",
81
+ metaDescription: "Every Exodia printing from LOB 1st Edition to modern reprints — market values and collecting tips.",
82
+ createdAt: daysAgo(5),
83
+ updatedAt: daysAgo(2),
161
84
  },
162
- // ── 5. Gundam MG vs RG Guide ─────────────────────────────────────────────
163
85
  {
164
- id: "blog-gundam-mg-vs-rg-which-grade-to-start",
165
- slug: "blog-gundam-mg-vs-rg-which-grade-to-start",
166
- title: "Gundam MG vs RG — Which Grade Should You Start With?",
167
- excerpt: "Master Grade or Real Grade? Both look stunning on a shelf, but they build completely differently. Here's how to choose based on your skill level, budget, and how much time you want to invest.",
168
- content: `<h2>Understanding Gunpla Grades</h2>
169
- <p>Bandai's Gundam plastic model kits (Gunpla) come in grades: HG (High Grade, 1/144 scale), RG (Real Grade, 1/144 scale), MG (Master Grade, 1/100 scale), and PG (Perfect Grade, 1/60 scale). The grade indicates detail level, inner frame complexity, and build difficulty.</p>
170
- <h2>Real Grade (RG) 1/144 Scale</h2>
171
- <p>RG kits pack MG-level detail into a small 1/144 frame. They feature an inner skeletal frame that pre-assembles before adding armour. The result is stunning — but the tiny parts are unforgiving. A misaligned snap can crack a piece that is 3mm wide. RG is recommended for builders who have completed 5+ HG kits and want to push skill limits. Price: ₹1,800–3,500.</p>
172
- <h2>Master Grade (MG) — 1/100 Scale</h2>
173
- <p>MG kits are larger, with parts that are easier to handle. The inner frame is built section-by-section (leg frame, arm frame, torso). MGs show off cockpit detail, hand articulation, and engineering that RGs can't match at their scale. MG is recommended for builders who have completed 2–3 HGs and want a flagship piece. Price: ₹2,800–6,500.</p>
174
- <h2>Which to Buy First?</h2>
175
- <p>If you're a beginner: start with HG RX-78-2 (₹800). If you've built a few HGs and want more detail at low cost: RG Unicorn Gundam (₹2,200). If you want a display piece and don't mind spending more time: MG Wing Zero EW (₹4,500). Both RG and MG benefit enormously from panel lining, top-coat spray, and decals — budget ₹500–800 for finishing supplies.</p>`,
176
- coverImage: "https://images.unsplash.com/photo-1595241422400-04a3e1e2e0d5?w=1200&h=630&fit=crop",
177
- category: BLOG_POST_FIELDS.CATEGORY_VALUES.GUIDES,
178
- tags: ["gundam", "gunpla", "mg", "rg", "bandai", "model-kits"],
86
+ id: "blog-beginners-guide-hot-wheels-collecting",
87
+ title: "Beginner's Guide to Hot Wheels Collecting in India",
88
+ slug: "beginners-guide-hot-wheels-collecting",
89
+ excerpt: "From mainlines to Super Treasure Hunts everything you need to know to start your Hot Wheels collection without breaking the bank.",
90
+ content: `<h2>Understanding the Tiers</h2><p><strong>Mainlines</strong> — ₹100–₹200 retail, the backbone of any collection. <strong>Premium</strong> — ₹400–₹600, metal/metal construction with Real Riders rubber tires. <strong>Car Culture</strong> — ₹700–₹1,000, themed sets with premium details. <strong>RLC (Red Line Club)</strong> — membership exclusive, ₹2,000–₹5,000+.</p><h2>Treasure Hunts</h2><p>Regular TH cards have a flame logo. Super Treasure Hunts (STH) have Spectraflame paint + Real Riders — roughly 1 per 15 cases. STHs command ₹2,000–₹10,000+ depending on the casting.</p><h2>Storage Tips</h2><p>Keep carded cars in protector cases. Loose cars in padded compartment boxes. Never store in direct sunlight — Spectraflame paint fades permanently.</p>`,
91
+ category: "guides",
92
+ tags: ["hot-wheels", "diecast", "collecting", "beginners", "treasure-hunt"],
179
93
  isFeatured: true,
180
- status: BLOG_POST_FIELDS.STATUS_VALUES.PUBLISHED,
181
- publishedAt: daysAgo(22),
94
+ status: "published",
95
+ publishedAt: daysAgo(18),
182
96
  authorId: "user-admin-letitrip",
183
97
  authorName: "LetItRip Admin",
184
- readTimeMinutes: 7,
185
- views: 1950,
186
- metaTitle: "Gundam MG vs RG Which Grade to Start With? | LetItRip",
187
- metaDescription: "Choosing between Gundam Master Grade and Real Grade kits difficulty, scale, price, and which to buy as your first or second Gunpla build.",
188
- createdAt: daysAgo(24),
189
- updatedAt: daysAgo(22),
98
+ readTimeMinutes: 8,
99
+ views: 3100,
100
+ metaTitle: "Beginner's Guide to Hot Wheels Collecting | LetItRip",
101
+ metaDescription: "Start your Hot Wheels collection in Indiamainlines, Treasure Hunts, storage, and where to find rare castings.",
102
+ createdAt: daysAgo(20),
103
+ updatedAt: daysAgo(18),
190
104
  },
191
- // ── 6. How to Spot Fake Pokémon Cards ────────────────────────────────────
192
105
  {
193
- id: "blog-how-to-spot-fake-pokemon-cards-authentication",
194
- slug: "blog-how-to-spot-fake-pokemon-cards-authentication",
195
- title: "How to Spot Fake Pokémon Cards — 7 Authentication Tests",
196
- excerpt: "Counterfeit Pokémon cards have become increasingly convincing. Here are 7 tests you can do at home to verify a card is authentic before spending thousands of rupees.",
197
- content: `<h2>Why Fakes Are a Problem Now</h2>
198
- <p>Chinese counterfeit Pokémon cards have improved dramatically since 2022. Basic fakes are easy to spot, but high-quality "proxies" can fool casual collectors. A fake PSA slab was reported in 2024. Always buy from verified sellers like those on LetItRip with review histories.</p>
199
- <h2>Test 1: The Light Test</h2>
200
- <p>Hold the card up to a bright light. Real Pokémon cards have a black core layer between the front and back. This shows as an unbroken dark line around all edges. Fakes often show a solid colour or uneven core.</p>
201
- <h2>Test 2: The Rip Test (last resort)</h2>
202
- <p>If you're willing to destroy a cheap suspected fake, rip it. Real cards tear to reveal a black core layer. Never do this on a card you want to keep — it's destructive.</p>
203
- <h2>Test 3: Print Dot Pattern</h2>
204
- <p>Under 60× jeweller's loupe, real cards show a regular CMYK dot-rosette pattern. Fakes often show a blurry smear, irregular dots, or an inkjet pattern of random dots.</p>
205
- <h2>Test 4: Colour and Saturation</h2>
206
- <p>Real Pokémon cards have specific Pantone-matched colours. Fakes are often washed out (desaturated) or too vivid. Compare the yellow Pokémon card border to a known-authentic card of the same era.</p>
207
- <h2>Test 5: Font and Text</h2>
208
- <p>Gill Sans is the Pokémon TCG font. Fakes often use a visually similar but incorrect font — inspect the numbers on HP and attack damage. Real cards have crisp, sharp edges on all text.</p>
209
- <h2>Test 6: Card Feel (Flex Test)</h2>
210
- <p>Real Pokémon cards have a specific stiffness — they flex slightly and snap back. Fakes are often too stiff (printed on thicker card stock) or too flexible. Develop a feel by handling known-authentic cards first.</p>
211
- <h2>Test 7: UV Light Test</h2>
212
- <p>Under 365nm UV light, real Pokémon cards show the holographic pattern glowing distinctly. Fakes often show a uniform glow or wrong colour fluorescence. A UV torch costs ₹200–400 and is worth having in every collector's kit.</p>`,
213
- coverImage: "https://images.unsplash.com/photo-1613771404784-3a5686aa2be3?w=1200&h=630&fit=crop",
214
- category: BLOG_POST_FIELDS.CATEGORY_VALUES.TIPS,
215
- tags: ["pokemon-cards", "authentication", "fake-cards", "collecting-tips"],
216
- isFeatured: true,
217
- status: BLOG_POST_FIELDS.STATUS_VALUES.PUBLISHED,
218
- publishedAt: daysAgo(15),
219
- authorId: "user-aryan-kapoor",
220
- authorName: "Aryan Kapoor",
106
+ id: "blog-gundam-model-kit-grades-explained",
107
+ title: "Gundam Model Kit Grades Explained: HG vs RG vs MG vs PG",
108
+ slug: "gundam-model-kit-grades-explained",
109
+ excerpt: "Not sure which Gundam grade to start with? Here's a detailed breakdown of every Bandai grade from the beginner-friendly HG to the massive Perfect Grade.",
110
+ content: `<h2>High Grade (HG) — 1/144 Scale</h2><p>The entry point for most builders. ~100 parts, snap-fit (no glue needed), completes in 2–3 hours. ₹800–₹2,000. Great articulation for the price.</p><h2>Real Grade (RG) — 1/144 Scale</h2><p>Master Grade detail at HG size. ~200 parts, pre-colored inner frame. More fragile than HG due to small parts. ₹1,800–₹3,500. The RG Nu Gundam and RG Wing Zero are fan favorites.</p><h2>Master Grade (MG) — 1/100 Scale</h2><p>The collector's standard. ~400 parts, fully detailed inner frame, excellent poseability. ₹3,500–₹8,000. Build time: 6–12 hours. MG Barbatos and MG Freedom 2.0 are top sellers on LetItRip.</p><h2>Perfect Grade (PG) — 1/60 Scale</h2><p>The pinnacle. ~800+ parts, LED-compatible, museum-quality detail. ₹12,000–₹25,000+. Build time: 20–40 hours. A showpiece, not a toy.</p><h2>Other Grades</h2><p><strong>SD</strong> (Super Deformed) — chibi proportions, great for kids. <strong>EG</strong> (Entry Grade) — simplified build, no tools needed. <strong>MGEX</strong> — MG with extreme detail (Unicorn Gundam only). <strong>PG Unleashed</strong> — beyond PG, the ultimate kit.</p>`,
111
+ category: "guides",
112
+ tags: ["gundam", "bandai", "model-kits", "hg", "mg", "rg", "pg"],
113
+ isFeatured: false,
114
+ status: "published",
115
+ publishedAt: daysAgo(12),
116
+ authorId: "user-admin-letitrip",
117
+ authorName: "LetItRip Admin",
221
118
  readTimeMinutes: 7,
222
- views: 3640,
223
- metaTitle: "How to Spot Fake Pokémon Cards — 7 Authentication Tests | LetItRip",
224
- metaDescription: "7 at-home tests to authenticate Pokémon cards: light test, print dots, font check, UV test, and more. Protect yourself from counterfeits.",
225
- createdAt: daysAgo(17),
226
- updatedAt: daysAgo(15),
119
+ views: 2600,
120
+ metaTitle: "Gundam Model Kit Grades Explained | LetItRip",
121
+ metaDescription: "HG vs RG vs MG vs PG understand every Gundam grade before you buy on LetItRip.",
122
+ createdAt: daysAgo(14),
123
+ updatedAt: daysAgo(12),
227
124
  },
228
- // ── 7. Funko Pop Storage & Display Tips ──────────────────────────────────
229
125
  {
230
- id: "blog-funko-pop-storage-display-tips",
231
- slug: "blog-funko-pop-storage-display-tips",
232
- title: "Funko Pop Storage & Display Tips — Keep Your Collection Box-Fresh",
233
- excerpt: "A Mint-in-Box Funko Pop can be worth 5–20× a loose one. Here's how to store, display, and protect your collection from UV, dust, moisture, and box damage.",
234
- content: `<h2>Why Condition Matters for Value</h2>
235
- <p>Funko Pop resell value is almost entirely driven by box condition. A Mint-in-Box (MIB) exclusive can fetch ₹2,000–15,000; the same Pop with a creased window or torn flap drops to ₹400–800. Protect the box from day one.</p>
236
- <h2>Pop Protectors</h2>
237
- <p>Hard plastic Pop Protectors (₹80–120 each) are essential for any Pop worth over ₹500. They prevent box dents, moisture contact, and UV yellowing. Stack-safe protectors allow vertical stacking without pressure on the top Pop's box. Buy in packs of 25–50 to reduce per-unit cost.</p>
238
- <h2>Display Shelving</h2>
239
- <p>IKEA KALLAX cubes (each cube fits 6–9 standard Pops) are the community standard. For premium display, acrylic risers (₹150–400) create a stadium effect. Keep shelves away from south-facing windows — UV light yellows clear window boxes within 12 months.</p>
240
- <h2>Temperature and Humidity</h2>
241
- <p>Store at 18–25°C and 40–50% relative humidity. Above 60% humidity, cardboard softens and moulds. Below 30%, card stock becomes brittle. A ₹500 hygrometer inside your display cabinet ensures you know the conditions.</p>
242
- <h2>Moving and Shipping Pops</h2>
243
- <p>Double-box every Pop for shipping — outer box 5–7cm larger than inner box, filled with bubble wrap. Newspaper is not sufficient padding. Mark "FRAGILE — COLLECTIBLE" on all sides. A ₹150 insurance add-on covers replacement if carrier damages the item.</p>`,
244
- coverImage: "https://images.unsplash.com/photo-1618842676088-c4d48a6a7571?w=1200&h=630&fit=crop",
245
- category: BLOG_POST_FIELDS.CATEGORY_VALUES.TIPS,
246
- tags: ["funko-pop", "display", "storage", "collecting-tips", "protection"],
126
+ id: "blog-beyblade-x-vs-burst-comparison",
127
+ title: "Beyblade X vs Burst: What's Changed and Is It Worth Switching?",
128
+ slug: "beyblade-x-vs-burst-comparison",
129
+ excerpt: "Beyblade X brought a whole new system Xtreme Dash rails, new launcher, and incompatible parts. Here's whether the upgrade is worth it for Indian bladers.",
130
+ content: `<h2>The Big Changes</h2><p>Beyblade X introduced the <strong>Xtreme Stadium</strong> with dash rails that accelerate beyblades mid-battle. The launcher mechanism is completely redesigned — smoother pull, more consistent spin. Parts are NOT compatible with Burst.</p><h2>Performance Comparison</h2><p>X beyblades spin longer out of the box thanks to better bearing tips. Burst had more customization depth (3 parts vs X's 3-layer system). X battles are faster and more aggressive due to the rail system.</p><h2>Availability in India</h2><p>Takara-Tomy X is available through importers on LetItRip. Hasbro X (budget version) is easier to find in retail stores. For competitive play, always go Takara-Tomy.</p><h2>Verdict</h2><p>If you're starting fresh: go X. If you have a big Burst collection: keep both systems. X stadiums work fine for casual Burst battles too — just no rail acceleration.</p>`,
131
+ category: "guides",
132
+ tags: ["beyblade", "beyblade-x", "burst", "takara-tomy", "comparison"],
247
133
  isFeatured: false,
248
- status: BLOG_POST_FIELDS.STATUS_VALUES.PUBLISHED,
249
- publishedAt: daysAgo(9),
134
+ status: "published",
135
+ publishedAt: daysAgo(8),
250
136
  authorId: "user-admin-letitrip",
251
137
  authorName: "LetItRip Admin",
252
- readTimeMinutes: 5,
253
- views: 1230,
254
- metaTitle: "Funko Pop Storage & Display Tips — Keep Boxes Mint | LetItRip",
255
- metaDescription: "How to store and display Funko Pops: Pop Protectors, KALLAX shelving, UV protection, humidity control, and safe shipping tips.",
256
- createdAt: daysAgo(11),
257
- updatedAt: daysAgo(9),
138
+ readTimeMinutes: 6,
139
+ views: 1900,
140
+ metaTitle: "Beyblade X vs Burst Comparison | LetItRip",
141
+ metaDescription: "Beyblade X vs Burst what changed, part compatibility, and whether Indian bladers should switch.",
142
+ createdAt: daysAgo(10),
143
+ updatedAt: daysAgo(8),
258
144
  },
259
- // ── 8. Tomica Limited Vintage Collector's Guide ───────────────────────────
145
+ // ── NEWS (4) ──────────────────────────────────────────────────────────────
260
146
  {
261
- id: "blog-tomica-limited-vintage-collectors-guide",
262
- slug: "blog-tomica-limited-vintage-collectors-guide",
263
- title: "Tomica Limited Vintage — The Complete Collector's Guide for India",
264
- excerpt: "Tomica Limited Vintage (TLV) models are some of the finest 1:64 diecast cars ever made painted in period-correct colours, on die-cast metal bodies with opening doors and accurate interior details.",
265
- content: `<h2>What is Tomica Limited Vintage?</h2>
266
- <p>Tomica Limited Vintage is a premium Takara Tomy sub-brand producing highly detailed 1:64 scale Japanese classic cars from the 1960s–1980s. Unlike standard Tomica (₹300–500), TLV models retail at ₹1,800–4,000 and include rubber tyres, opening parts, and period livery options like police cars and taxis.</p>
267
- <h2>TLV vs TLV-N (Neo)</h2>
268
- <p>The original TLV line covers pre-1975 Japanese cars. TLV-N (Neo) extends to 1980s and some 1990s models. TLV-N models often have more opening parts and softer plastics. Both share the same 1:64 scale and are cross-compatible for display.</p>
269
- <h2>Most Sought-After TLV Models in India</h2>
270
- <ul>
271
- <li><strong>TLV Datsun Bluebird 1600SSS (1969)</strong> — rally heritage livery, ₹3,500–5,000</li>
272
- <li><strong>TLV-N Toyota Corolla Levin AE86 Sprinter</strong> — Initial D connection, ₹2,800–4,500</li>
273
- <li><strong>TLV Nissan Skyline GT-R KPGC10</strong> — Hakosuka, ₹4,000–7,000</li>
274
- <li><strong>TLV Honda N360 (1967)</strong> — kei car classic, ₹2,200–3,800</li>
275
- </ul>
276
- <h2>Where to Buy in India</h2>
277
- <p>TLV models are not available at regular toy retailers. Source from importers, dedicated collector shops, and LetItRip's Diecast Depot store. New releases ship from Japan 2–3 months after the Japanese release date. Pre-orders sell out fast — register your interest on the LetItRip pre-order section.</p>
278
- <h2>Storage and Display</h2>
279
- <p>TLV models come in individual plastic display cases inside a cardboard outer box. Keep in original cases — the plastic yellows if left in direct sunlight. IKEA DETOLF glass cabinet with LED lighting is the community favourite for premium display.</p>`,
280
- coverImage: "https://images.unsplash.com/photo-1563642421748-5047b6585a4a?w=1200&h=630&fit=crop",
281
- category: BLOG_POST_FIELDS.CATEGORY_VALUES.GUIDES,
282
- tags: ["tomica", "tomica-limited-vintage", "tlv", "diecast", "japanese-cars"],
147
+ id: "blog-top-10-duel-monsters-cards",
148
+ title: "Top 10 Most Valuable Duel Monsters Era Cards",
149
+ slug: "top-10-duel-monsters-cards",
150
+ excerpt: "From the legendary Blue-Eyes White Dragon LOB 1st Edition to the elusive Tournament Black Luster Soldierthese are the cards every collector dreams of.",
151
+ content: `<h2>1. Tournament Black Luster Soldier (2002)</h2><p>The rarest YGO card ever printed. Only one exists in the wild. Estimated value: over ₹70 lakh.</p><h2>2. Blue-Eyes White Dragon LOB 1st Ed PSA 10</h2><p>Seto Kaiba's signature card in gem mint 1st Edition. PSA 10 copies sell for ₹15–25 lakh.</p><h2>3. Dark Magician LOB 1st Ed PSA 10</h2><p>Yugi's signature card. A PSA 10 1st Edition LOB Dark Magician commands ₹8–12 lakh.</p><h2>4. Exodia Complete Set (LOB 1st Ed, all 5 pieces PSA 10)</h2><p>All five Exodia pieces in 1st Edition PSA 10 — virtually impossible to assemble. Set value: over ₹20 lakh.</p><h2>5–10</h2><p>Mirror Force MRD 1st Ed, Change of Heart MRD 1st Ed, Monster Reborn LOB 1st Ed, Pot of Greed LOB 1st Ed, Gate Guardian MRD, and Dark Magician Girl MFC 1st Ed.</p>`,
152
+ coverImage: { type: "image", url: "https://images.ygoprodeck.com/images/cards/cropped/89631139.jpg", alt: "Blue-Eyes White Dragon" },
153
+ category: "news",
154
+ tags: ["top-10", "duel-monsters", "investment", "rare-cards"],
283
155
  isFeatured: false,
284
- status: BLOG_POST_FIELDS.STATUS_VALUES.PUBLISHED,
285
- publishedAt: daysAgo(4),
286
- authorId: "user-vikram-mehta",
287
- authorName: "Vikram Mehta",
288
- readTimeMinutes: 6,
289
- views: 890,
290
- metaTitle: "Tomica Limited Vintage Collector's Guide for India | LetItRip",
291
- metaDescription: "Complete guide to collecting Tomica Limited Vintage TLV vs TLV-N, top models, where to buy in India, and display tips.",
292
- createdAt: daysAgo(6),
293
- updatedAt: daysAgo(4),
156
+ status: "published",
157
+ publishedAt: daysAgo(20),
158
+ authorId: "user-admin-letitrip",
159
+ authorName: "LetItRip Admin",
160
+ authorAvatar: "https://images.ygoprodeck.com/images/cards/cropped/33396948.jpg",
161
+ readTimeMinutes: 8,
162
+ views: 6100,
163
+ metaTitle: "Top 10 Most Valuable Duel Monsters Era Cards | LetItRip",
164
+ metaDescription: "The 10 most expensive Yu-Gi-Oh! cards from the original Duel Monsters era.",
165
+ createdAt: daysAgo(22),
166
+ updatedAt: daysAgo(20),
294
167
  },
295
- // ── 9. Pokémon TCG SV Era Set Review ─────────────────────────────────────
296
168
  {
297
- id: "blog-pokemon-scarlet-violet-era-set-review",
298
- slug: "blog-pokemon-scarlet-violet-era-set-review",
299
- title: "Pokémon TCG Scarlet & Violet Era — Best Sets to Invest In",
300
- excerpt: "The SV block has produced some of the most printed Pokémon sets everbut a few releases stand out as long-term investment plays. Here is our 18-month outlook.",
301
- content: `<h2>SV EraContext</h2>
302
- <p>Scarlet & Violet kicked off in March 2023 with a base set that printed at unprecedented volumes. The era has seen 9 main sets so far, plus special expansions and Pokémon Center exclusives.</p>
303
- <h2>Sets Worth Holding Sealed</h2>
304
- <p><strong>Paldea Evolved</strong> — Iono Special Illustration Rare drove secondary prices on character art chases. Booster boxes still trade near MSRP. Long-term sealed potential: moderate.</p>
305
- <p><strong>151</strong> — The nostalgia-driven Kanto reprint set is the strongest SV-era performer. Booster boxes have appreciated 40% since release. Hold sealed.</p>
306
- <p><strong>Shrouded Fable</strong> — Pecharunt mini-set with strong art rares. Limited print compared to mainline sets. Speculative hold.</p>
307
- <h2>Cards to Watch in Singles</h2>
308
- <ol>
309
- <li>Iono SIR (Paldea Evolved) — character art chase, female trainer demand.</li>
310
- <li>Charizard ex Obsidian Flames Hyper Rare — flagship card of the era.</li>
311
- <li>Mew ex 151 — nostalgia chase, low alt-art print run.</li>
312
- <li>Pikachu ex Surging Sparks — Special Illustration Rare with strong eye-appeal.</li>
313
- </ol>
314
- <p>Buy what you like, hold long-term, and never YOLO an entire investment thesis on one set.</p>`,
315
- coverImage: "https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=1200&h=630&fit=crop",
316
- category: BLOG_POST_FIELDS.CATEGORY_VALUES.GUIDES,
317
- tags: ["pokemon", "tcg", "investment", "sv-era", "set-review"],
169
+ id: "blog-pokemon-sv-prismatic-evolutions",
170
+ title: "Pokémon SV Prismatic Evolutions: What Indian Collectors Need to Know",
171
+ slug: "pokemon-sv-prismatic-evolutions",
172
+ excerpt: "Prismatic Evolutions is the hottest Pokémon set in 2026 here's the pull rates, chase cards, and pricing for Indian collectors.",
173
+ content: `<h2>The Chase Cards</h2><p>Prismatic Evolutions features all Eeveelution illustration rares + the Eevee gold star. The <strong>Umbreon illustration rare</strong> is the #1 chase card commanding ₹40,000+ raw and ₹1.5 lakh+ in PSA 10.</p><h2>Pull Rates</h2><p>Illustration rare: ~1 in 25 packs. Special art rare: ~1 in 50 packs. Gold star: ~1 in 200 packs. The odds are brutal — most collectors buy singles on LetItRip instead of gambling on packs.</p><h2>Indian Market Pricing</h2><p>Booster boxes import at ₹6,000–₹8,000 (vs ₹4,000 US retail). ETBs at ₹4,500–₹6,000. The premium is due to import duties + limited official distribution in India. Pre-order on LetItRip to lock in the lowest price.</p>`,
174
+ category: "news",
175
+ tags: ["pokemon", "prismatic-evolutions", "trading-cards", "pricing", "chase-cards"],
318
176
  isFeatured: true,
319
- status: BLOG_POST_FIELDS.STATUS_VALUES.PUBLISHED,
320
- publishedAt: daysAgo(50),
177
+ status: "published",
178
+ publishedAt: daysAgo(7),
321
179
  authorId: "user-admin-letitrip",
322
180
  authorName: "LetItRip Admin",
323
181
  readTimeMinutes: 6,
324
- views: 3210,
325
- metaTitle: "Pokémon SV Era Set Review Best Sets to Invest | LetItRip",
326
- metaDescription: "Detailed review of Scarlet & Violet Pokémon TCG sets which to hold sealed, which singles to chase, and 18-month outlook.",
327
- createdAt: daysAgo(52),
328
- updatedAt: daysAgo(50),
182
+ views: 5200,
183
+ metaTitle: "Pokémon Prismatic EvolutionsIndian Collector Guide | LetItRip",
184
+ metaDescription: "Pull rates, chase cards, and Indian market pricing for Pokémon SV Prismatic Evolutions.",
185
+ createdAt: daysAgo(8),
186
+ updatedAt: daysAgo(7),
329
187
  },
330
- // ── 10. Hot Wheels Treasure Hunt Pulls Strategy ──────────────────────────
331
188
  {
332
- id: "blog-hot-wheels-treasure-hunt-pulls-strategy",
333
- slug: "blog-hot-wheels-treasure-hunt-pulls-strategy",
334
- title: "Hot Wheels Treasure Hunt Pulls — Maximising Your Hunt",
335
- excerpt: "Treasure Hunts and Super Treasure Hunts are the holy grail for HW collectors. Here is how to actually find them at retail in India.",
336
- content: `<h2>TH vs STH</h2>
337
- <p>Treasure Hunts have a flame logo on the card and standard wheel-and-tyre combo. Super Treasure Hunts have Real Riders rubber tyres, Spectraflame paint, and a TH logo hidden inside the artwork. STH cards trade 5–20× retail; TH cards 2–4×.</p>
338
- <h2>Case-Hit Ratios</h2>
339
- <p>An A/B/C/D case mix has roughly 1 STH per 72 cars and 1 TH per 72 cars. That means a single case yields one of each. Knowing the case codes printed on the cardback (J24, K24, L24, etc.) is what separates hunters from random shoppers.</p>
340
- <h2>Where to Hunt in India</h2>
341
- <ol>
342
- <li><strong>Hamleys, Reliance Smart, and Hypercity</strong> — restock Wednesdays in metro cities.</li>
343
- <li><strong>Mall toy stores</strong> — Crossword, Funskool boutiques — restock weekly.</li>
344
- <li><strong>Toy section in Big Bazaar / Star Bazaar</strong> — sometimes carries STH overlooked.</li>
345
- <li><strong>Online: Flipkart, Amazon</strong> — pricing inflated; better for verified STH.</li>
346
- </ol>
347
- <h2>Identifying STH at a Glance</h2>
348
- <p>Flip the car and look at the wheels. Real Riders (rubber, separate wheel + tyre piece) = STH. Standard 5-spoke or HW basic wheels = regular release. The Spectraflame paint flashes blue/green/purple under store fluorescent light. Practice in front of a mirror with a known STH so your eye gets calibrated.</p>`,
349
- coverImage: "https://images.unsplash.com/photo-1566576912321-d58ddd7a6088?w=1200&h=630&fit=crop",
350
- category: BLOG_POST_FIELDS.CATEGORY_VALUES.GUIDES,
351
- tags: ["hot-wheels", "treasure-hunt", "super-th", "hunting", "diecast"],
189
+ id: "blog-funko-pop-india-market-2026",
190
+ title: "The State of Funko Pop Collecting in India — 2026 Edition",
191
+ slug: "funko-pop-india-market-2026",
192
+ excerpt: "Funko Pop has exploded in India. Here's the market landscape exclusive sourcing, pricing trends, and the most sought-after figures.",
193
+ content: `<h2>Market Growth</h2><p>India's Funko Pop market has grown 3x since 2024, driven by anime Pops (Dragon Ball, Naruto, One Piece, Jujutsu Kaisen) and Marvel/Star Wars crossover appeal. LetItRip now has over 200 Funko listings across 5 verified stores.</p><h2>Exclusive Sourcing</h2><p>Convention exclusives (SDCC, NYCC) are the hardest to source. Indian collectors rely on importers who attend or have proxies at US conventions. Expect a 2–3x markup over US retail. Store exclusives (Hot Topic, BoxLunch, Target) are slightly easier via authorized resellers.</p><h2>Chase Variants</h2><p>Chase Pops (1-in-6 ratio) command a 3–5x premium. Glow-in-the-dark chases and flocked variants are the most popular in the Indian market. Always verify the chase sticker — counterfeits exist.</p><h2>Storage & Display</h2><p>Pop protectors (₹50–₹100 each) are essential. UV-filtering acrylic display cases for grails. Never store in direct sunlight — window box printing fades within months.</p>`,
194
+ category: "news",
195
+ tags: ["funko", "pop", "india", "market-trends", "collecting"],
352
196
  isFeatured: false,
353
- status: BLOG_POST_FIELDS.STATUS_VALUES.PUBLISHED,
354
- publishedAt: daysAgo(45),
197
+ status: "published",
198
+ publishedAt: daysAgo(14),
355
199
  authorId: "user-admin-letitrip",
356
200
  authorName: "LetItRip Admin",
357
- readTimeMinutes: 5,
358
- views: 2890,
359
- metaTitle: "Hot Wheels Treasure Hunt Hunting Strategy India | LetItRip",
360
- metaDescription: "How to find Hot Wheels Treasure Hunts and Super Treasure Hunts at retail in India — case-hit ratios, restock days, and identification tips.",
361
- createdAt: daysAgo(47),
362
- updatedAt: daysAgo(45),
201
+ readTimeMinutes: 7,
202
+ views: 2400,
203
+ metaTitle: "Funko Pop Collecting in India 2026 | LetItRip",
204
+ metaDescription: "The state of Funko Pop collecting in India — exclusives, chase variants, and market trends.",
205
+ createdAt: daysAgo(16),
206
+ updatedAt: daysAgo(14),
363
207
  },
364
- // ── 11. Selling Tips for First-Time Sellers ──────────────────────────────
365
208
  {
366
- id: "blog-first-time-seller-tips-photography-shipping",
367
- slug: "blog-first-time-seller-tips-photography-shipping",
368
- title: "First-Time Seller's Guide — Photography, Pricing, and Shipping",
369
- excerpt: "About to list your first collectibles on LetItRip? This guide covers the three biggest mistakes new sellers make and how to avoid them.",
370
- content: `<h2>Photography</h2>
371
- <p>Bad photos lose 70% of potential buyers in the first three seconds. Use natural light from a north-facing window. Shoot the front, back, and any defects honestly. Show the slab cert number for graded cards. Six photos minimum per listing.</p>
372
- <h2>Pricing</h2>
373
- <p>Check completed sales (not active listings) on three or more platforms for comps. Underprice slightly for first sales to build reviews — a 4.9-star seller commands a 10–15% premium across the board.</p>
374
- <h2>Shipping</h2>
375
- <p>Use rigid mailers for cards. Foam-lined boxes for figures and diecast. Always include tracking. India Post Speed Post is reliable for under ₹5,000 items; Blue Dart or DTDC Plus for higher value. Insure anything over ₹3,000.</p>
376
- <h2>Common Mistakes</h2>
377
- <ol>
378
- <li>Generic stock photos instead of actual item — buyers will dispute.</li>
379
- <li>No defect disclosure — leads to refunds and bad reviews.</li>
380
- <li>Ignoring offers and messages — kills repeat business.</li>
381
- <li>Soft-packing fragile items — broken in transit means losing both shipping and item cost.</li>
382
- </ol>
383
- <p>Start small, build a track record, then scale your store inventory.</p>`,
384
- coverImage: "https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=1200&h=630&fit=crop",
385
- category: BLOG_POST_FIELDS.CATEGORY_VALUES.GUIDES,
386
- tags: ["selling", "seller-tips", "photography", "shipping", "pricing"],
209
+ id: "blog-tomica-vs-hot-wheels-india",
210
+ title: "Tomica vs Hot Wheels: The Diecast Battle in India",
211
+ slug: "tomica-vs-hot-wheels-india",
212
+ excerpt: "Two diecast giants go head-to-head. Which one offers better value, detail, and collectibility for Indian enthusiasts?",
213
+ content: `<h2>Scale & Detail</h2><p>Tomica uses variable scale (roughly 1/60–1/64) to keep each model proportionally accurate in the hand. Hot Wheels uses a fixed 1/64 scale. Result: Tomica models look proportionally better; Hot Wheels are more consistent in a display.</p><h2>Build Quality</h2><p>Tomica models have working suspension and opening doors/hoods as standard — even on mainline ₹300 models. Hot Wheels mainlines are simpler (no opening parts) but Hot Wheels Premium (₹500+) matches Tomica quality.</p><h2>JDM & India Market</h2><p>Tomica dominates for JDM collectors (GT-R, Supra, AE86, Civic Type R). Hot Wheels wins for American muscle, European exotics, and fantasy castings. For Indian vehicles, Tomica has released exclusive India models (Maruti Swift, Tata Nexon) — highly collectible.</p><h2>Verdict</h2><p>Both. Seriously — most Indian collectors collect both. Tomica for realistic detail, Hot Wheels for variety and Treasure Hunt thrill.</p>`,
214
+ category: "news",
215
+ tags: ["tomica", "hot-wheels", "diecast", "comparison", "jdm"],
387
216
  isFeatured: false,
388
- status: BLOG_POST_FIELDS.STATUS_VALUES.PUBLISHED,
389
- publishedAt: daysAgo(38),
390
- authorId: "user-admin-letitrip",
391
- authorName: "LetItRip Admin",
392
- readTimeMinutes: 4,
393
- views: 1640,
394
- metaTitle: "First-Time Seller Guide — Photos, Pricing, Shipping | LetItRip",
395
- metaDescription: "Three biggest mistakes new collectibles sellers make and how to avoid them. Photography, pricing, and shipping basics.",
396
- createdAt: daysAgo(40),
397
- updatedAt: daysAgo(38),
398
- },
399
- // ── 12. Anime Figure Bootleg Detection ───────────────────────────────────
400
- {
401
- id: "blog-anime-figure-bootleg-detection-guide",
402
- slug: "blog-anime-figure-bootleg-detection-guide",
403
- title: "How to Spot a Bootleg Anime Figure",
404
- excerpt: "The Chinese bootleg figure market is sophisticated enough that even seasoned collectors get fooled. Here are the tells that separate authentic from KO.",
405
- content: `<h2>Box Tells</h2>
406
- <p>Authentic Good Smile, Bandai, and Alter boxes have crisp four-colour printing with consistent registration. Bootleg boxes often show slight misalignment on dark colours, lower-resolution character art, and Japanese text that's clearly photocopied.</p>
407
- <h2>Sculpt Tells</h2>
408
- <p>Compare the production figure against the official prototype photos. Eye paint is the #1 bootleg giveaway — bootlegs have crooked, asymmetric, or smudged eyes. Hair flow lines that should be sharp will be soft or blobby on a bootleg.</p>
409
- <h2>Paint Tells</h2>
410
- <p>Look at gradient skin tones. Authentic figures use 3–4 layer airbrushed paint. Bootlegs are usually a single flat tone or have visible brush strokes. Hair highlights look painted-on, not airbrushed.</p>
411
- <h2>Base + Accessories</h2>
412
- <p>Authentic bases are heavy plastic with smooth molding. Bootleg bases warp and have visible mold-line seams. Accessories like swords or magic effects come in separate compartments in authentic packaging; bootlegs often dump them all together.</p>
413
- <h2>Where to Buy Safely</h2>
414
- <p>AmiAmi, HobbyLink Japan, BBTS, and Solaris Japan are authorised. On LetItRip we verify every figure seller's box photos and run cross-checks against official prototype images before approval. Avoid any "deal too good to be true" — bootleg pricing is usually 30–50% below MSRP.</p>`,
415
- coverImage: "https://images.unsplash.com/photo-1578632767115-351597cf2477?w=1200&h=630&fit=crop",
416
- category: BLOG_POST_FIELDS.CATEGORY_VALUES.GUIDES,
417
- tags: ["anime-figures", "bootleg-detection", "authentication", "buying-guide"],
418
- isFeatured: true,
419
- status: BLOG_POST_FIELDS.STATUS_VALUES.PUBLISHED,
420
- publishedAt: daysAgo(32),
217
+ status: "published",
218
+ publishedAt: daysAgo(22),
421
219
  authorId: "user-admin-letitrip",
422
220
  authorName: "LetItRip Admin",
423
221
  readTimeMinutes: 6,
424
- views: 2450,
425
- metaTitle: "How to Spot a Bootleg Anime Figure | LetItRip",
426
- metaDescription: "Detailed guide to spotting bootleg anime figures box, sculpt, paint, and base tells. Stay safe buying figures online.",
427
- createdAt: daysAgo(34),
428
- updatedAt: daysAgo(32),
222
+ views: 1800,
223
+ metaTitle: "Tomica vs Hot Wheels Diecast Battle in India | LetItRip",
224
+ metaDescription: "Tomica vs Hot Wheelsdetail, build quality, and collecting value for Indian diecast enthusiasts.",
225
+ createdAt: daysAgo(24),
226
+ updatedAt: daysAgo(22),
429
227
  },
430
- // ── 13. Gunpla Build Tips for Beginners ──────────────────────────────────
228
+ // ── TIPS (4) ──────────────────────────────────────────────────────────────
431
229
  {
432
- id: "blog-gunpla-beginner-build-tips-essential-tools",
433
- slug: "blog-gunpla-beginner-build-tips-essential-tools",
434
- title: "Gunpla for Beginners — Essential Tools and First Build Tips",
435
- excerpt: "Starting your first Gunpla can be intimidating with 200+ parts. Here is exactly what tools you need and which kits to start with.",
436
- content: `<h2>Tools You Actually Need</h2>
437
- <ol>
438
- <li><strong>God Hand SPN-120 nippers</strong> (₹3,500) — single-edge cutters for clean cuts. Worth every rupee.</li>
439
- <li><strong>Hobby knife with replacement blades</strong> — for cleaning nub marks.</li>
440
- <li><strong>Sanding sticks 400/600/800 grit</strong> — smooth nub remnants.</li>
441
- <li><strong>Gundam markers</strong> — panel lining without ink bleed.</li>
442
- <li><strong>Top coat spray</strong> — matte or gloss finish protects paint and decals.</li>
443
- </ol>
444
- <h2>Kits to Start With</h2>
445
- <p><strong>HG RX-78-2 Revive</strong> (₹2,500) — modern engineering, snap-fit, no glue. 90 minutes to build. Perfect first kit.</p>
446
- <p><strong>HG Barbatos</strong> (₹2,800) — Iron-Blooded Orphans series, popular silhouette, articulated frame.</p>
447
- <p><strong>RG Zaku II</strong> (₹4,200) — Real Grade engineering with internal frame and runners. Step up from HG.</p>
448
- <h2>Build Process</h2>
449
- <p>Read the instruction book front-to-back before cutting any plastic. Cut twice — first cut leaves a nub on the part, second cut trims close, then sand smooth. Test-fit major sections before final assembly. Panel-line in stages so the ink doesn't dry on your hands.</p>`,
450
- coverImage: "https://images.unsplash.com/photo-1657664072470-99b02c2143f2?w=1200&h=630&fit=crop",
451
- category: BLOG_POST_FIELDS.CATEGORY_VALUES.GUIDES,
452
- tags: ["gunpla", "gundam", "model-kits", "beginner", "tools"],
230
+ id: "blog-gx-era-hidden-gems",
231
+ title: "GX Era Hidden Gems: Undervalued Cards from Shadow of Infinity",
232
+ slug: "gx-era-hidden-gems",
233
+ excerpt: "The GX era produced some of the most undervalued cards in Yu-Gi-Oh! history. Here are the Shadow of Infinity cards smart collectors are buying now.",
234
+ content: `<h2>Why GX Cards Are Undervalued</h2><p>The GX era (2004–2008) coincided with peak Yu-Gi-Oh! anime popularity but many collectors focus exclusively on the original Duel Monsters era. This creates a pricing gap.</p><h2>Shadow of Infinity Picks</h2><p><strong>Elemental HERO Neos</strong> — Jaden Yuki's signature card. 1st Edition Ultra Rare copies are still affordable at ₹3,000–₹5,000.</p><p><strong>Cyber Dragon</strong> — One of the most competitively impactful cards ever. 1st Edition Ultimate Rare commands ₹8,000–₹12,000.</p><p><strong>Rainbow Dragon</strong> — Jesse Anderson's ace. Low print run makes this a sleeper investment.</p>`,
235
+ coverImage: { type: "image", url: "https://images.ygoprodeck.com/images/cards/cropped/89943723.jpg", alt: "Elemental HERO Neos" },
236
+ category: "tips",
237
+ tags: ["gx-era", "hidden-gems", "investment", "ygo"],
453
238
  isFeatured: false,
454
- status: BLOG_POST_FIELDS.STATUS_VALUES.PUBLISHED,
455
- publishedAt: daysAgo(28),
239
+ status: "published",
240
+ publishedAt: daysAgo(15),
456
241
  authorId: "user-admin-letitrip",
457
242
  authorName: "LetItRip Admin",
458
- readTimeMinutes: 5,
459
- views: 1980,
460
- metaTitle: "Gunpla for Beginners — Tools and First Build | LetItRip",
461
- metaDescription: "Essential tools for your first Gunpla build, recommended starter kits, and a step-by-step process. Beginner-friendly guide.",
462
- createdAt: daysAgo(30),
463
- updatedAt: daysAgo(28),
243
+ authorAvatar: "https://images.ygoprodeck.com/images/cards/cropped/33396948.jpg",
244
+ readTimeMinutes: 6,
245
+ views: 2900,
246
+ metaTitle: "GX Era Hidden Gems Undervalued YGO Cards | LetItRip",
247
+ metaDescription: "Discover undervalued GX era Yu-Gi-Oh! cards that smart collectors are buying now.",
248
+ createdAt: daysAgo(18),
249
+ updatedAt: daysAgo(15),
464
250
  },
465
- // ── 14. Yu-Gi-Oh! Investment Cards ───────────────────────────────────────
466
251
  {
467
- id: "blog-yugioh-investment-cards-2026",
468
- slug: "blog-yugioh-investment-cards-2026",
469
- title: "Yu-Gi-Oh! Investment Cards to Watch in 2026",
470
- excerpt: "Yu-Gi-Oh! singles market has matured into a serious investment space. Five cards we expect to outperform over the next 12 months.",
471
- content: `<h2>Why Yu-Gi-Oh! Now</h2>
472
- <p>The 25th Anniversary Quarter Century Secret Rares have shifted price floors permanently higher. PSA-graded vintage 1st Edition LOB has appreciated 280% over five years. The market is real.</p>
473
- <h2>Cards to Watch</h2>
474
- <ol>
475
- <li><strong>LOB-001 Blue-Eyes White Dragon 1st Edition PSA 9</strong> — flagship vintage card; appreciation track record is the strongest in the game.</li>
476
- <li><strong>LOB-000 Exodia the Forbidden One 1st Edition</strong> — pop-culture iconic, low PSA 9+ population.</li>
477
- <li><strong>Magician of Black Chaos LC01 25th Quarter Century</strong> — Yugi's anime ace, sub-200 PSA 10 globally.</li>
478
- <li><strong>Dark Magician Girl 1st Edition Magician's Force</strong> — strong female-character demand.</li>
479
- <li><strong>Tournament Black-Eyes prize cards</strong> — limited distribution, ultra-low supply.</li>
480
- </ol>
481
- <p>Always buy graded slabs from PSA/BGS — Yu-Gi-Oh! has a higher bootleg/reprint rate than Pokémon.</p>`,
482
- coverImage: "https://images.unsplash.com/photo-1612036782180-6f0b6cd846fe?w=1200&h=630&fit=crop",
483
- category: BLOG_POST_FIELDS.CATEGORY_VALUES.GUIDES,
484
- tags: ["yugioh", "investment", "vintage", "psa", "1st-edition"],
252
+ id: "blog-protect-collectibles-indian-climate",
253
+ title: "How to Protect Your Collectibles in India's Climate",
254
+ slug: "protect-collectibles-indian-climate",
255
+ excerpt: "Humidity, dust, and monsoon season are the biggest enemies of collectibles in India. Here's how to keep your cards, figures, and kits safe year-round.",
256
+ content: `<h2>The Humidity Problem</h2><p>India's average humidity is 60–80% — far above the 40–50% ideal for collectibles. Excess moisture causes card warping, sticker lifting on Funko boxes, paint degradation on diecast, and mold growth on cardboard packaging.</p><h2>Essential Gear</h2><p><strong>Silica gel packets</strong> — ₹200 for a 20-pack. Place 2–3 in every storage box. Replace when they turn pink/clear. <strong>Dehumidifier</strong> — ₹3,000–₹8,000 for a 10L/day unit. Essential for display rooms. <strong>UV-filtering display cases</strong> — prevents sunlight fading on Spectraflame (Hot Wheels), holo cards, and figure paint.</p><h2>Monsoon Protocol</h2><p>During June–September: seal all open storage, move ground-level boxes to shelves, check silica gel weekly. If you're in a flood-prone area, consider off-site storage for high-value grails.</p><h2>Card-Specific Tips</h2><p>Double-sleeve valuable cards (penny sleeve + top-loader). Store in a binder with O-ring closure, not D-ring. Keep graded slabs in padded boxes — PSA cases crack if dropped.</p>`,
257
+ category: "tips",
258
+ tags: ["storage", "climate", "humidity", "india", "preservation"],
485
259
  isFeatured: false,
486
- status: BLOG_POST_FIELDS.STATUS_VALUES.PUBLISHED,
487
- publishedAt: daysAgo(22),
260
+ status: "published",
261
+ publishedAt: daysAgo(10),
488
262
  authorId: "user-admin-letitrip",
489
263
  authorName: "LetItRip Admin",
490
- readTimeMinutes: 4,
491
- views: 1320,
492
- metaTitle: "Yu-Gi-Oh! Investment Cards 2026 | LetItRip",
493
- metaDescription: "Five Yu-Gi-Oh! cards expected to outperform in 2026 vintage LOB classics, 25th anniversary Quarter Century, tournament prize cards.",
494
- createdAt: daysAgo(24),
495
- updatedAt: daysAgo(22),
264
+ readTimeMinutes: 7,
265
+ views: 3500,
266
+ metaTitle: "Protect Collectibles in India's Climate | LetItRip",
267
+ metaDescription: "Humidity, dust, and monsoon tipshow to protect your collectibles in Indian weather.",
268
+ createdAt: daysAgo(12),
269
+ updatedAt: daysAgo(10),
496
270
  },
497
- // ── 15. Funko Pop Vaulting Strategy ──────────────────────────────────────
498
271
  {
499
- id: "blog-funko-pop-vaulting-strategy-collectors",
500
- slug: "blog-funko-pop-vaulting-strategy-collectors",
501
- title: "Understanding Funko Pop Vaulting — Buy or Wait?",
502
- excerpt: "Funko 'vaults' over 100 pops per year making yesterday's $10 figure tomorrow's $80 chase. Should you stockpile or play the secondary market?",
503
- content: `<h2>What Vaulting Means</h2>
504
- <p>When Funko vaults a Pop, they stop production permanently. Existing units become the only supply. Demand-driven appreciation follows for 12–36 months until the market saturates with secondary listings.</p>
505
- <h2>Top Recent Vaultings</h2>
506
- <ol>
507
- <li>Stan Lee Glow Chase (vaulted 2023) — now ₹8,000 from ₹1,200 MSRP.</li>
508
- <li>Marvel Mech Strike Iron Man Translucent — vaulted 2024, tripled secondary.</li>
509
- <li>Demon Slayer Nezuko in Box (vaulted 2024) — anime category continues to outperform.</li>
510
- </ol>
511
- <h2>How to Play It</h2>
512
- <p><strong>Stockpile strategy:</strong> Buy 2–3 of any pop you genuinely like at MSRP. One for display, one sealed, one to sell when vaulted. Works long-term; ties up capital.</p>
513
- <p><strong>Secondary-market strategy:</strong> Wait 18–24 months after a vault is announced, then buy mint-in-box from established sellers. Pricing usually peaks around 24–30 months then plateaus.</p>
514
- <h2>Pop Protectors</h2>
515
- <p>Use UV-rated rigid acrylic protectors (₹250 each) — sun-faded box artwork can lose 50% of value. Storage in original outer cardboard helps.</p>`,
516
- coverImage: "https://images.unsplash.com/photo-1608889825271-9696283b84bd?w=1200&h=630&fit=crop",
517
- category: BLOG_POST_FIELDS.CATEGORY_VALUES.GUIDES,
518
- tags: ["funko-pop", "vaulting", "investment", "secondary-market", "stan-lee"],
272
+ id: "blog-selling-tips-letitrip",
273
+ title: "10 Tips to Sell Faster on LetItRip",
274
+ slug: "selling-tips-letitrip",
275
+ excerpt: "From photography to pricing to descriptionsproven tactics to make your listings sell faster on LetItRip.",
276
+ content: `<h2>1. Photograph Everything</h2><p>Front, back, edges, corners, holo pattern. Natural light. White background. Minimum 4 photos per listing.</p><h2>2. Price Competitively</h2><p>Check what similar items sold for on LetItRip in the last 30 days. Price 5–10% below the lowest active listing for a fast sale.</p><h2>3. Write Honest Descriptions</h2><p>State the exact condition. Mention every flaw. Buyers trust sellers who are upfront about imperfections — they'll come back.</p><h2>4. Respond to Offers Within 2 Hours</h2><p>Quick responses convert. Buyers often make offers to multiple sellers — the first response wins.</p><h2>5. Ship the Same Day</h2><p>Buyers who receive fast shipping leave 5-star reviews. 5-star reviews bring more buyers. It's a flywheel.</p><h2>6–10</h2><p>Use accurate category tags. Add a YouTube unboxing link. Offer bundle discounts. Cross-reference to your other listings. Keep your store description updated.</p>`,
277
+ category: "tips",
278
+ tags: ["selling", "tips", "photography", "pricing", "seller-guide"],
519
279
  isFeatured: false,
520
- status: BLOG_POST_FIELDS.STATUS_VALUES.PUBLISHED,
521
- publishedAt: daysAgo(18),
280
+ status: "published",
281
+ publishedAt: daysAgo(5),
522
282
  authorId: "user-admin-letitrip",
523
283
  authorName: "LetItRip Admin",
524
- readTimeMinutes: 4,
525
- views: 970,
526
- metaTitle: "Funko Pop Vaulting Strategy Buy or Wait | LetItRip",
527
- metaDescription: "How Funko vaulting drives secondary-market appreciation. Stockpile vs wait-and-buy strategies and recent vaulted hits.",
528
- createdAt: daysAgo(20),
529
- updatedAt: daysAgo(18),
284
+ readTimeMinutes: 5,
285
+ views: 1600,
286
+ metaTitle: "10 Tips to Sell Faster on LetItRip",
287
+ metaDescription: "Proven selling tactics photography, pricing, and descriptions that convert on LetItRip.",
288
+ createdAt: daysAgo(6),
289
+ updatedAt: daysAgo(5),
530
290
  },
531
- // ── 16. Beyblade X Tournament Format ─────────────────────────────────────
532
291
  {
533
- id: "blog-beyblade-x-tournament-format-guide",
534
- slug: "blog-beyblade-x-tournament-format-guide",
535
- title: "Beyblade X Tournament Format — Sanctioned Rules Explained",
536
- excerpt: "Beyblade X tournaments use a different ruleset from Burst. Here is everything you need to know before entering your first sanctioned event.",
537
- content: `<h2>Match Format</h2>
538
- <p>Best of 5 rounds. Each round awards 1 point for ring-out/burst, 2 points for extreme-finish (X-finish). First to 5 wins.</p>
539
- <h2>Deck Building</h2>
540
- <p>Each player brings a 3-Bey deck. Players choose 1 Bey before each round; opponent must choose simultaneously and reveal at the same time. No mid-match swaps.</p>
541
- <h2>Banned Parts</h2>
542
- <p>As of January 2026, Hells Hammer / Hells Reaper are banned in sanctioned play due to consistency exploits. Always check the WBO/Takara-Tomy official banned-parts list before competition.</p>
543
- <h2>Match Etiquette</h2>
544
- <p>Bow at start and end. Shake hands. No tampering with launchers or Beys during opponent's setup. Judges may inspect any Bey at any time.</p>
545
- <h2>India Tournament Calendar</h2>
546
- <p>Mumbai Open (Q1), Bangalore Beyblade League (Q2), Delhi WBO Regional (Q3), Hyderabad Championship (Q4). Prize support varies by region; usually merchandise + cash for top 4.</p>`,
547
- coverImage: "https://images.unsplash.com/photo-1612287230202-1ff1d85d1bdf?w=1200&h=630&fit=crop",
548
- category: BLOG_POST_FIELDS.CATEGORY_VALUES.NEWS,
549
- tags: ["beyblade-x", "tournament", "rules", "competitive", "wbo"],
292
+ id: "blog-one-piece-tcg-india-primer",
293
+ title: "One Piece TCG in India: A Complete Primer",
294
+ slug: "one-piece-tcg-india-primer",
295
+ excerpt: "One Piece Card Game has arrived in India. Here's everything you need to know about the game, the sets, and which cards to collect.",
296
+ content: `<h2>What Is One Piece TCG?</h2><p>Released by Bandai in 2022, the One Piece Card Game has quickly become one of the top 3 trading card games globally. It uses a leader + character + event + stage system, with DON!! cards as the energy resource.</p><h2>Sets Available in India</h2><p>Romance Dawn (OP-01) through Wings of the Captain (OP-06) are available through importers on LetItRip. Expect a 1.5–2x markup over Japanese retail due to import costs.</p><h2>Chase Cards</h2><p>Alternate art leaders and manga art special rares are the most sought-after. <strong>Luffy Gear 5 (OP-05 alt art)</strong> — ₹15,000+. <strong>Shanks alt art (OP-01)</strong> — ₹8,000+. <strong>Nami alt art (OP-01)</strong> — ₹12,000+.</p><h2>Investment Potential</h2><p>One Piece TCG is undervalued compared to Pokémon. Early sets (OP-01, OP-02) are already appreciating. Buy singles of alt art leaders now — the floor is rising.</p>`,
297
+ category: "tips",
298
+ tags: ["one-piece", "bandai", "trading-cards", "primer", "tcg"],
550
299
  isFeatured: false,
551
- status: BLOG_POST_FIELDS.STATUS_VALUES.PUBLISHED,
552
- publishedAt: daysAgo(14),
300
+ status: "draft",
553
301
  authorId: "user-admin-letitrip",
554
302
  authorName: "LetItRip Admin",
555
- readTimeMinutes: 3,
556
- views: 760,
557
- metaTitle: "Beyblade X Tournament FormatSanctioned Rules | LetItRip",
558
- metaDescription: "Complete Beyblade X tournament format guide match rules, deck building, banned parts, and India calendar.",
559
- createdAt: daysAgo(16),
560
- updatedAt: daysAgo(14),
303
+ readTimeMinutes: 8,
304
+ views: 0,
305
+ metaTitle: "One Piece TCG in India Complete Primer | LetItRip",
306
+ metaDescription: "Everything Indian collectors need to know about One Piece Card Game — sets, chase cards, and investment.",
307
+ createdAt: daysAgo(3),
308
+ updatedAt: daysAgo(1),
561
309
  },
562
- // ── 17. Hot Wheels RLC Membership Worth It? ──────────────────────────────
310
+ // ── COMMUNITY (3) ─────────────────────────────────────────────────────────
563
311
  {
564
- id: "blog-hot-wheels-rlc-membership-worth-it-2026",
565
- slug: "blog-hot-wheels-rlc-membership-worth-it-2026",
566
- title: "Is Hot Wheels Red Line Club Membership Worth It in 2026?",
567
- excerpt: "RLC membership costs $19.99/year and grants access to exclusive Spectraflame releases. Here is whether it actually pays off for an Indian collector.",
568
- content: `<h2>What RLC Includes</h2>
569
- <p>Annual membership grants: limited-edition exclusive Hot Wheels release (Real Riders, Spectraflame paint, individually numbered), 4–6 RLC-only catalogue car releases, access to RLC convention pre-orders, and discount on Mattel Creations drops.</p>
570
- <h2>The Math for India</h2>
571
- <p>Membership: $19.99 (~₹1,700). Exclusive arrives via FedEx (~₹1,200 international shipping). Total landed cost: ~₹2,900. Secondary-market value of past 5 years' RLC exclusives: ₹3,500–₹6,000 each. Net positive even if you flip immediately.</p>
572
- <h2>Risks</h2>
573
- <p>Membership opens January 1, sells out within 4 hours. If you miss the window, no resale of memberships allowed. Some years' exclusives are duds — 2022 Datsun 510 underperformed. Quality control: 5% of exclusives ship damaged.</p>
574
- <h2>Should You Join?</h2>
575
- <p>Yes, if: you collect Spectraflame, you can be online 1 January 9 AM IST, and you have a reliable US shipping forwarder. No, if: you only collect mainline, you can't justify ₹3,000 entry, or you don't want to track membership renewal dates.</p>`,
576
- coverImage: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=1200&h=630&fit=crop",
577
- category: BLOG_POST_FIELDS.CATEGORY_VALUES.GUIDES,
578
- tags: ["hot-wheels", "rlc", "membership", "spectraflame", "exclusive"],
312
+ id: "blog-authenticating-ygo-cards",
313
+ title: "How a Verified Store Authenticates Every Card",
314
+ slug: "authenticating-ygo-cards",
315
+ excerpt: "A behind-the-scenes look at how verified sellers on LetItRip check every trading card before listing light tests, holo patterns, and weight checks.",
316
+ content: `<h2>The 5-Point Authentication Process</h2><p>Every card listed by top verified stores goes through a rigorous 5-point check:</p><ol><li><strong>Light Test</strong> — Genuine Konami/Pokémon Company cards have a specific opacity when held to light.</li><li><strong>Holo Pattern</strong> — Each rarity has a distinct holographic pattern verified under UV light.</li><li><strong>Weight Check</strong> — A genuine trading card weighs approximately 1.7–1.8 grams.</li><li><strong>Rosette Test</strong> — Under 10x magnification, genuine cards show a rosette dot pattern.</li><li><strong>Edge & Corner Inspection</strong> — Check for trimming, re-cornering, or alteration.</li></ol>`,
317
+ coverImage: { type: "image", url: "https://images.ygoprodeck.com/images/cards/cropped/23995346.jpg", alt: "Card authentication process" },
318
+ category: "community",
319
+ tags: ["authentication", "verification", "counterfeit", "trading-cards"],
579
320
  isFeatured: false,
580
- status: BLOG_POST_FIELDS.STATUS_VALUES.PUBLISHED,
321
+ status: "published",
581
322
  publishedAt: daysAgo(10),
582
323
  authorId: "user-admin-letitrip",
583
324
  authorName: "LetItRip Admin",
584
- readTimeMinutes: 4,
585
- views: 510,
586
- metaTitle: "Hot Wheels RLC Membership Worth It 2026 | LetItRip",
587
- metaDescription: "Detailed cost-benefit analysis of Hot Wheels Red Line Club membership for Indian collectors in 2026.",
325
+ readTimeMinutes: 5,
326
+ views: 3400,
327
+ metaTitle: "How Verified Stores Authenticate Cards | LetItRip",
328
+ metaDescription: "The 5-point authentication process used by verified stores to check every trading card on LetItRip.",
588
329
  createdAt: daysAgo(12),
589
330
  updatedAt: daysAgo(10),
590
331
  },
591
- // ── 18. Display & Storage for High-Value Collectibles ────────────────────
592
332
  {
593
- id: "blog-displaying-high-value-collectibles-tips",
594
- slug: "blog-displaying-high-value-collectibles-tips",
595
- title: "Displaying High-Value Collectibles — UV, Humidity, and Theft-Proofing",
596
- excerpt: "Investing in collectibles is one thing protecting them is another. Three environmental threats and how to mitigate each.",
597
- content: `<h2>UV Damage</h2>
598
- <p>Direct sunlight fades any printed cardboard, foil, or coloured plastic within months. Use UV-filtered acrylic display cases (₹2,000–₹8,000 depending on size). Keep display rooms east-facing or interior; avoid south-facing rooms in tropical India.</p>
599
- <h2>Humidity</h2>
600
- <p>India's monsoon humidity (60–85% RH) is a card collector's worst enemy. Cards warp, slab labels mildew, autograph signatures fade. Use silica gel packs in sealed display containers. Maintain 35–45% RH with a small dehumidifier in dedicated rooms (₹6,000–₹15,000).</p>
601
- <h2>Theft-Proofing</h2>
602
- <p>Don't post specific high-value items on public social media. If displaying at events, photograph items beforehand for insurance documentation. Home safe with bolt-down mount for ₹50k+ items; bank locker for ₹2L+ items. Renter's/homeowner's insurance with collectibles rider costs ~₹2,000/year and covers up to ₹5L in covered items.</p>
603
- <h2>Cleaning</h2>
604
- <p>Microfibre cloth only for figures. For cards in slabs, soft brush + can of compressed air. Never use solvents or sprays on direct paint. Dust acrylic cases monthly to prevent buildup that scratches when wiped.</p>`,
605
- coverImage: "https://images.unsplash.com/photo-1614108831137-558fffac9ead?w=1200&h=630&fit=crop",
606
- category: BLOG_POST_FIELDS.CATEGORY_VALUES.GUIDES,
607
- tags: ["display", "storage", "uv-protection", "humidity", "insurance"],
333
+ id: "blog-collector-spotlight-mumbai-gundam",
334
+ title: "Collector Spotlight: Building India's Largest Gundam Collection in Mumbai",
335
+ slug: "collector-spotlight-mumbai-gundam",
336
+ excerpt: "Meet Arjun a Mumbai software engineer with 200+ Gundam kits, a dedicated build room, and a mission to grow India's Gunpla community.",
337
+ content: `<h2>The Collection</h2><p>Arjun started with a single HG RX-78-2 in 2019. Seven years later, his Mumbai apartment has a dedicated room with 200+ built kits across HG, RG, MG, and 3 Perfect Grades. The crown jewel: a painted and weathered PG Unleashed RX-78-2.</p><h2>The Build Process</h2><p>"I spend 2–3 hours every evening after work. It's meditation. The snap-fit assembly, the panel lining, the decals — there's something deeply satisfying about transforming a box of runners into a finished kit."</p><h2>Growing the Community</h2><p>Arjun runs a monthly Mumbai Gunpla meetup with 30+ regular attendees. "When I started, there were maybe 5 Gunpla builders I knew in all of Mumbai. Now there's a real community. LetItRip has helped — having a dedicated marketplace means people can actually find kits without paying 3x import markup."</p><h2>Advice for New Builders</h2><p>"Start with an HG. Don't buy a PG as your first kit — you'll get overwhelmed. Build 10–15 HGs, then try an RG. The skills transfer. And always — always — use a nipper, not scissors."</p>`,
338
+ category: "community",
339
+ tags: ["gundam", "spotlight", "mumbai", "gunpla", "community"],
608
340
  isFeatured: true,
609
- status: BLOG_POST_FIELDS.STATUS_VALUES.PUBLISHED,
610
- publishedAt: daysAgo(5),
341
+ status: "published",
342
+ publishedAt: daysAgo(3),
611
343
  authorId: "user-admin-letitrip",
612
344
  authorName: "LetItRip Admin",
613
- readTimeMinutes: 5,
614
- views: 380,
615
- metaTitle: "Displaying High-Value Collectibles | LetItRip",
616
- metaDescription: "Protect your collectibles from UV, humidity, and theft. Display case, dehumidifier, and insurance recommendations for India.",
617
- createdAt: daysAgo(7),
618
- updatedAt: daysAgo(5),
345
+ readTimeMinutes: 6,
346
+ views: 1200,
347
+ metaTitle: "Collector Spotlight: Mumbai Gundam Collection | LetItRip",
348
+ metaDescription: "Meet the Mumbai engineer building India's largest Gundam collection 200+ kits and growing.",
349
+ createdAt: daysAgo(4),
350
+ updatedAt: daysAgo(3),
619
351
  },
620
- // ── 19. Pre-Order Anatomy: Pokémon Sets ──────────────────────────────────
621
352
  {
622
- id: "blog-pre-order-anatomy-pokemon-tcg-sets",
623
- slug: "blog-pre-order-anatomy-pokemon-tcg-sets",
624
- title: "Pre-Order Anatomy — How Pokémon TCG Sets Get to India",
625
- excerpt: "Why do Pokémon pre-orders take 45–90 days from announcement to your hands? The supply chain explained.",
626
- content: `<h2>Announcement Production</h2>
627
- <p>Pokémon Company International announces a set 6 months before street date. Production at Toppan/DNP Japan begins 3 months out. Print quantities are decided based on distributor pre-orders.</p>
628
- <h2>Distribution India</h2>
629
- <p>Sets ship via sea freight from Japan/USA to Mumbai/Chennai ports — typically 4–6 weeks. Customs clearance adds 1–2 weeks. Distributors then ship to retailers across India.</p>
630
- <h2>Why Pre-Orders Make Sense</h2>
631
- <p>Allocation. Premium sets (Crown Zenith, 151, Hidden Fates) are produced in capped quantities. Distributors fulfil pre-orders first; remaining stock is unpredictable. Pre-ordering at LetItRip locks your unit and your price (no street-price markup).</p>
632
- <h2>What Goes Wrong</h2>
633
- <p>Production delays (Charizard ex shortage 2023 added 6 weeks). Customs hold-ups during Diwali season. Currency fluctuation (USD spike means seller may revise price). All these are reasons we offer cancellable pre-orders with full deposit refund.</p>
634
- <h2>Tips</h2>
635
- <p>Pre-order from sellers with multi-year track record. Check fulfilment ETAs against announced street date — if a seller promises faster than the official street date, be suspicious. Pay deposits via Razorpay/UPI only; never advance the full amount.</p>`,
636
- coverImage: "https://images.unsplash.com/photo-1578301978162-7aae4d755744?w=1200&h=630&fit=crop",
637
- category: BLOG_POST_FIELDS.CATEGORY_VALUES.GUIDES,
638
- tags: ["pre-orders", "pokemon", "supply-chain", "distribution", "buying-guide"],
353
+ id: "blog-india-collectibles-market-overview",
354
+ title: "The Indian Collectibles Market in 2026: Where We Stand",
355
+ slug: "india-collectibles-market-overview",
356
+ excerpt: "From trading cards to action figures — a data-driven look at India's growing collectibles scene and what's driving the boom.",
357
+ content: `<h2>The Numbers</h2><p>India's organized collectibles market is estimated at ₹2,500 crore in 2026, up from ₹800 crore in 2022. Trading cards (Pokémon, YGO, One Piece) account for ~40%, followed by action figures (~25%), diecast (~15%), and model kits (~10%).</p><h2>What's Driving Growth</h2><p><strong>Anime streaming</strong> — India is now the #3 market for anime streaming (Crunchyroll, Netflix anime). Fans who watch Dragon Ball, Naruto, and One Piece naturally become collectors. <strong>Social media</strong> — Instagram and YouTube unboxing/pull content drives awareness. <strong>Verified platforms</strong> — LetItRip and similar platforms have made it safe to buy collectibles online, reducing the counterfeit risk that previously kept buyers away.</p><h2>What's Hot in 2026</h2><p>Pokémon cards remain #1 by volume. Yu-Gi-Oh! has the highest average transaction value. Beyblade X is the fastest-growing category. Gundam is niche but intensely loyal. Hot Wheels Super Treasure Hunts are the "gateway drug" for new collectors.</p><h2>What's Next</h2><p>Sports cards (cricket, specifically) are the next frontier. Digital collectibles (graded card NFTs backed by physical) are being explored. LetItRip is building infrastructure for both.</p>`,
358
+ category: "community",
359
+ tags: ["india", "market", "overview", "trends", "2026"],
639
360
  isFeatured: false,
640
- status: BLOG_POST_FIELDS.STATUS_VALUES.PUBLISHED,
641
- publishedAt: daysAgo(3),
361
+ status: "published",
362
+ publishedAt: daysAgo(16),
363
+ authorId: "user-admin-letitrip",
364
+ authorName: "LetItRip Admin",
365
+ readTimeMinutes: 8,
366
+ views: 4100,
367
+ metaTitle: "Indian Collectibles Market 2026 | LetItRip",
368
+ metaDescription: "Data-driven overview of India's collectibles market — trading cards, figures, diecast, and what's driving growth.",
369
+ createdAt: daysAgo(18),
370
+ updatedAt: daysAgo(16),
371
+ },
372
+ // ── UPDATES (3) ───────────────────────────────────────────────────────────
373
+ {
374
+ id: "blog-letitrip-escrow-launch",
375
+ title: "LetItRip Now Has Full Escrow Protection — Here's How It Works",
376
+ slug: "letitrip-escrow-launch",
377
+ excerpt: "Every purchase on LetItRip is now protected by escrow. Your payment is held securely until you confirm delivery. Here's what that means for you.",
378
+ content: `<h2>What Changed</h2><p>All payments on LetItRip now go through escrow via Razorpay. This means your money is held by LetItRip — not sent directly to the seller. The seller only gets paid after you confirm delivery (or 7 days pass without a dispute).</p><h2>How It Protects Buyers</h2><p>If the item doesn't arrive, isn't as described, or is counterfeit — you open a dispute and your money is returned. No chasing sellers. No "send money first, trust me bro." Professional marketplace standards.</p><h2>How It Protects Sellers</h2><p>Sellers are protected from fraudulent chargebacks. Once the buyer confirms delivery, the payment is released. If a buyer tries to scam a seller, our mediation team reviews the evidence and rules fairly.</p><h2>UPI / Card / Net Banking</h2><p>Escrow works with all payment methods — UPI (GPay, PhonePe, Paytm), credit/debit cards, and net banking. The checkout experience is the same; the protection is invisible but always active.</p>`,
379
+ category: "updates",
380
+ tags: ["escrow", "launch", "buyer-protection", "razorpay", "feature"],
381
+ isFeatured: false,
382
+ status: "published",
383
+ publishedAt: daysAgo(45),
642
384
  authorId: "user-admin-letitrip",
643
385
  authorName: "LetItRip Admin",
644
386
  readTimeMinutes: 4,
645
- views: 220,
646
- metaTitle: "Pokémon TCG Pre-Order Anatomy Supply Chain | LetItRip",
647
- metaDescription: "Why Pokémon TCG pre-orders take 45–90 days and how the supply chain works. Pre-ordering tips for Indian collectors.",
648
- createdAt: daysAgo(4),
649
- updatedAt: daysAgo(3),
387
+ views: 7200,
388
+ metaTitle: "Escrow Protection Now Live on LetItRip",
389
+ metaDescription: "LetItRip's escrow payment system how it protects buyers and sellers on every transaction.",
390
+ createdAt: daysAgo(48),
391
+ updatedAt: daysAgo(45),
650
392
  },
651
- // ── 20. LetItRip Marketplace Year in Review ──────────────────────────────
652
393
  {
653
- id: "blog-letitrip-year-in-review-2026",
654
- slug: "blog-letitrip-year-in-review-2026",
655
- title: "LetItRip Year in Review — Highlights from 2026 So Far",
656
- excerpt: "Our collectibles community has grown to 15,000+ active buyers and 50+ verified sellers. Here is what stood out in the first half of 2026.",
657
- content: `<h2>Community Growth</h2>
658
- <p>Active monthly users: 15,200 (up from 4,800 in 2025). Verified sellers: 52. Average listings per day: 340.</p>
659
- <h2>Most-Searched Categories</h2>
660
- <ol>
661
- <li>Pokémon TCG singles (32% of searches)</li>
662
- <li>Hot Wheels mainline + STH (18%)</li>
663
- <li>Anime figures — S.H.Figuarts + Nendoroids (14%)</li>
664
- <li>Beyblade X (9%)</li>
665
- <li>Gunpla HG/RG (8%)</li>
666
- </ol>
667
- <h2>Auction Highlights</h2>
668
- <p>Biggest auction sale: 1st Edition Base Set Charizard PSA 9 — ₹2,99,999. Most bids: Hot Wheels Spectraflame Pink Camaro Redline — 14 bids.</p>
669
- <h2>Coming Soon</h2>
670
- <p>Bundle listings (Q3), Prize Draw system (Q4), Live Streaming for sellers (early 2027). Stay tuned to our blog for the roadmap.</p>
671
- <h2>Thank You</h2>
672
- <p>To every seller, buyer, and lurker — thank you for trusting LetItRip with your collectibles journey. Keep ripping!</p>`,
673
- coverImage: "https://images.unsplash.com/photo-1606107557195-0e29a4b5b4aa?w=1200&h=630&fit=crop",
674
- category: BLOG_POST_FIELDS.CATEGORY_VALUES.NEWS,
675
- tags: ["letitrip", "year-in-review", "community", "marketplace", "stats"],
676
- isFeatured: true,
677
- status: BLOG_POST_FIELDS.STATUS_VALUES.PUBLISHED,
678
- publishedAt: daysAgo(1),
394
+ id: "blog-seller-verification-program",
395
+ title: "Meet Our Verified Seller Program — What It Means for You",
396
+ slug: "seller-verification-program",
397
+ excerpt: "Every seller on LetItRip goes through manual verification. Here's what we check, why it matters, and how to get verified yourself.",
398
+ content: `<h2>What We Verify</h2><p>Every seller application is manually reviewed by our team. We check: government ID (PAN/Aadhaar), store photos (inventory + packaging setup), previous selling history (if any), and a live video call to verify identity.</p><h2>Why It Matters</h2><p>Verified sellers have a 98% positive feedback rate on LetItRip. Unverified platforms see 15–20% dispute rates. Our verification eliminates the vast majority of scams before they happen.</p><h2>The Verified Badge</h2><p>Once approved, your store gets a ✓ Verified badge visible on every listing. Buyers filter by "Verified only" — which means verified sellers get more visibility and more sales.</p><h2>Become a Seller</h2><p>Go to Account → Become a Seller. The process takes ~48 hours. No listing fees, no monthly subscription. You only pay a commission when you make a sale.</p>`,
399
+ category: "updates",
400
+ tags: ["verification", "seller", "trust", "badge", "program"],
401
+ isFeatured: false,
402
+ status: "published",
403
+ publishedAt: daysAgo(35),
679
404
  authorId: "user-admin-letitrip",
680
405
  authorName: "LetItRip Admin",
681
- readTimeMinutes: 3,
682
- views: 1820,
683
- metaTitle: "LetItRip Year in Review 2026 | LetItRip",
684
- metaDescription: "Highlights from the first half of 2026 on LetItRip community stats, top categories, auction records, and coming features.",
685
- createdAt: daysAgo(2),
686
- updatedAt: daysAgo(1),
406
+ readTimeMinutes: 5,
407
+ views: 4800,
408
+ metaTitle: "Verified Seller Program | LetItRip",
409
+ metaDescription: "How LetItRip's seller verification program worksand how to get verified.",
410
+ createdAt: daysAgo(38),
411
+ updatedAt: daysAgo(35),
412
+ },
413
+ {
414
+ id: "blog-auction-feature-launch",
415
+ title: "Live Auctions Are Here — Bid on Rare Collectibles",
416
+ slug: "auction-feature-launch",
417
+ excerpt: "LetItRip now supports live auctions with auto-extend, real-time bidding, and escrow-protected payments. Start bidding today.",
418
+ content: `<h2>How Auctions Work</h2><p>Sellers list items as auctions with a starting bid and optional reserve price. Bidders place bids in real-time. The highest bidder when the auction ends wins the item.</p><h2>Anti-Sniping Protection</h2><p>If a bid is placed in the final 2 minutes, the auction auto-extends by 2 minutes. This prevents last-second sniping and gives every bidder a fair chance.</p><h2>Escrow Protection</h2><p>Won auctions go through the same escrow system as fixed-price purchases. Your money is held until you confirm delivery.</p><h2>What's Being Auctioned</h2><p>Rare 1st Edition cards, convention exclusive figures, vintage Beyblades, limited edition Hot Wheels, and more. Browse the Auctions page to see what's live now.</p>`,
419
+ category: "updates",
420
+ tags: ["auctions", "launch", "feature", "bidding", "auto-extend"],
421
+ isFeatured: false,
422
+ status: "archived",
423
+ publishedAt: daysAgo(60),
424
+ authorId: "user-admin-letitrip",
425
+ authorName: "LetItRip Admin",
426
+ readTimeMinutes: 4,
427
+ views: 5600,
428
+ metaTitle: "Live Auctions Now on LetItRip",
429
+ metaDescription: "Bid on rare collectibles with auto-extend protection and escrow payments on LetItRip.",
430
+ createdAt: daysAgo(65),
431
+ updatedAt: daysAgo(60),
687
432
  },
688
433
  ];