@cimplify/cli 0.2.8 → 0.3.0

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 (229) hide show
  1. package/dist/{add-7PTWJV4F.mjs → add-ZJNXWN2B.mjs} +10 -10
  2. package/dist/assets-DMK2QOPD.mjs +208 -0
  3. package/dist/chunk-5IAYN7AJ.mjs +259 -0
  4. package/dist/{chunk-4SBJVRGM.mjs → chunk-C4M3DXKC.mjs} +3 -1
  5. package/dist/{chunk-NC3GKHDD.mjs → chunk-D7WMSGKK.mjs} +1 -1
  6. package/dist/{chunk-NZ4RG62Z.mjs → chunk-I3XQSSOT.mjs} +4 -1
  7. package/dist/{chunk-JJYWETGA.mjs → chunk-LS2VTSMQ.mjs} +8 -2
  8. package/dist/{chunk-H2HJQGFY.mjs → chunk-MHK4WVNF.mjs} +2392 -596
  9. package/dist/{chunk-JOUXICGV.mjs → chunk-MOZQODQS.mjs} +1 -1
  10. package/dist/{chunk-KPGRCXQY.mjs → chunk-QGBXGDA5.mjs} +5 -5
  11. package/dist/chunk-RRY3NEZZ.mjs +79 -0
  12. package/dist/{chunk-L6474RPL.mjs → chunk-RZQTHTXX.mjs} +1 -1
  13. package/dist/{chunk-4YSOZ6LY.mjs → chunk-YI7UMMM7.mjs} +1 -1
  14. package/dist/{chunk-UPEHLREA.mjs → chunk-YQVMG62Z.mjs} +3 -3
  15. package/dist/{deploy-6KVOROT3.mjs → deploy-UKOOPJAE.mjs} +8 -82
  16. package/dist/{dev-AQP6TMYK.mjs → dev-FD4PM3UD.mjs} +5 -5
  17. package/dist/dispatcher.mjs +34 -22
  18. package/dist/doctor-5LBLYT7M.mjs +314 -0
  19. package/dist/{domains-2ZQ7AG27.mjs → domains-JQMV6GAP.mjs} +5 -5
  20. package/dist/{env-FDBPGU3W.mjs → env-EVMYQUIK.mjs} +6 -6
  21. package/dist/explain-3KBMWL6M.mjs +223 -0
  22. package/dist/introspect-PFBI3JHO.mjs +8 -0
  23. package/dist/{link-P4K2HRXY.mjs → link-X3E4UZBF.mjs} +4 -4
  24. package/dist/{list-44MLIFI2.mjs → list-TE54SJIB.mjs} +3 -3
  25. package/dist/{login-RSKGT6GU.mjs → login-WSAW4BEA.mjs} +4 -4
  26. package/dist/{logout-ZFZLSJ32.mjs → logout-DJDINVDF.mjs} +2 -2
  27. package/dist/{logs-E2AGTDCF.mjs → logs-KUKGEXR2.mjs} +4 -4
  28. package/dist/{projects-5CJOZ3MT.mjs → projects-364HGWHO.mjs} +13 -11
  29. package/dist/repo-26N2CHF6.mjs +8 -0
  30. package/dist/{rollback-36O4NOEL.mjs → rollback-5YALPQXL.mjs} +5 -5
  31. package/dist/{status-6AT4HF63.mjs → status-W4HW3CX3.mjs} +4 -4
  32. package/dist/{unlink-5ABCT7B6.mjs → unlink-HIIW57OO.mjs} +2 -2
  33. package/dist/{update-6KEG7EWK.mjs → update-5MRKRVZC.mjs} +7 -7
  34. package/dist/{whoami-DIJZYZIN.mjs → whoami-LACWBSNL.mjs} +3 -3
  35. package/package.json +3 -3
  36. package/templates/storefront-auto/.claude/skills/cimplify-storefront/SKILL.md +145 -0
  37. package/templates/storefront-auto/.cursor/rules/cimplify-storefront.mdc +25 -0
  38. package/templates/storefront-auto/.env.example +22 -0
  39. package/templates/storefront-auto/AGENTS.md +95 -0
  40. package/templates/storefront-auto/CLAUDE.md +22 -0
  41. package/templates/storefront-auto/README.md +48 -0
  42. package/templates/storefront-auto/__tests__/brand.test.ts +4 -0
  43. package/templates/storefront-auto/__tests__/cart-flow.test.ts +4 -0
  44. package/templates/storefront-auto/__tests__/contract.test.ts +4 -0
  45. package/templates/storefront-auto/app/.well-known/ucp/route.ts +65 -0
  46. package/templates/storefront-auto/app/about/page.tsx +41 -0
  47. package/templates/storefront-auto/app/accessibility/page.tsx +11 -0
  48. package/templates/storefront-auto/app/account/addresses/page.tsx +21 -0
  49. package/templates/storefront-auto/app/account/orders/page.tsx +21 -0
  50. package/templates/storefront-auto/app/account/page.tsx +22 -0
  51. package/templates/storefront-auto/app/account/settings/page.tsx +21 -0
  52. package/templates/storefront-auto/app/cart/page.tsx +9 -0
  53. package/templates/storefront-auto/app/categories/[slug]/listing-client.tsx +19 -0
  54. package/templates/storefront-auto/app/categories/[slug]/page.tsx +130 -0
  55. package/templates/storefront-auto/app/checkout/page.tsx +17 -0
  56. package/templates/storefront-auto/app/collections/[slug]/listing-client.tsx +20 -0
  57. package/templates/storefront-auto/app/collections/[slug]/page.tsx +130 -0
  58. package/templates/storefront-auto/app/contact/contact-form.tsx +109 -0
  59. package/templates/storefront-auto/app/contact/page.tsx +54 -0
  60. package/templates/storefront-auto/app/error.tsx +61 -0
  61. package/templates/storefront-auto/app/faq/page.tsx +46 -0
  62. package/templates/storefront-auto/app/globals.css +47 -0
  63. package/templates/storefront-auto/app/layout.tsx +77 -0
  64. package/templates/storefront-auto/app/llms.txt/route.ts +94 -0
  65. package/templates/storefront-auto/app/login/page.tsx +17 -0
  66. package/templates/storefront-auto/app/not-found.tsx +39 -0
  67. package/templates/storefront-auto/app/opensearch.xml/route.ts +37 -0
  68. package/templates/storefront-auto/app/orders/[id]/page.tsx +24 -0
  69. package/templates/storefront-auto/app/page.tsx +94 -0
  70. package/templates/storefront-auto/app/privacy/page.tsx +44 -0
  71. package/templates/storefront-auto/app/products/[slug]/page.tsx +165 -0
  72. package/templates/storefront-auto/app/products/[slug]/product-detail.tsx +70 -0
  73. package/templates/storefront-auto/app/returns/page.tsx +11 -0
  74. package/templates/storefront-auto/app/robots.ts +18 -0
  75. package/templates/storefront-auto/app/search/page.tsx +38 -0
  76. package/templates/storefront-auto/app/search/search-client.tsx +7 -0
  77. package/templates/storefront-auto/app/shipping/page.tsx +16 -0
  78. package/templates/storefront-auto/app/shop/page.tsx +63 -0
  79. package/templates/storefront-auto/app/shop/shop-client.tsx +32 -0
  80. package/templates/storefront-auto/app/signup/page.tsx +17 -0
  81. package/templates/storefront-auto/app/sitemap-page/page.tsx +167 -0
  82. package/templates/storefront-auto/app/sitemap.ts +59 -0
  83. package/templates/storefront-auto/app/terms/page.tsx +44 -0
  84. package/templates/storefront-auto/app/track-order/page.tsx +24 -0
  85. package/templates/storefront-auto/app/track-order/track-order-form.tsx +69 -0
  86. package/templates/storefront-auto/components/account-iframe.tsx +13 -0
  87. package/templates/storefront-auto/components/auto-hero.tsx +85 -0
  88. package/templates/storefront-auto/components/brand-marquee.tsx +27 -0
  89. package/templates/storefront-auto/components/cart-drawer.tsx +14 -0
  90. package/templates/storefront-auto/components/cart-pill.tsx +36 -0
  91. package/templates/storefront-auto/components/category-grid.tsx +28 -0
  92. package/templates/storefront-auto/components/category-tiles.tsx +104 -0
  93. package/templates/storefront-auto/components/collection-strip.tsx +45 -0
  94. package/templates/storefront-auto/components/feature-hero.tsx +84 -0
  95. package/templates/storefront-auto/components/fitment-finder.tsx +184 -0
  96. package/templates/storefront-auto/components/footer.tsx +153 -0
  97. package/templates/storefront-auto/components/header.tsx +45 -0
  98. package/templates/storefront-auto/components/hero.tsx +28 -0
  99. package/templates/storefront-auto/components/nav-link.tsx +20 -0
  100. package/templates/storefront-auto/components/newsletter.tsx +50 -0
  101. package/templates/storefront-auto/components/policy-page.tsx +49 -0
  102. package/templates/storefront-auto/components/promo-banner.tsx +41 -0
  103. package/templates/storefront-auto/components/providers.tsx +35 -0
  104. package/templates/storefront-auto/components/section-heading.tsx +37 -0
  105. package/templates/storefront-auto/components/service-brief.tsx +65 -0
  106. package/templates/storefront-auto/components/store-product-card.tsx +88 -0
  107. package/templates/storefront-auto/components/trade-in-cta.tsx +54 -0
  108. package/templates/storefront-auto/components/trust-bar.tsx +66 -0
  109. package/templates/storefront-auto/lib/brand.ts +744 -0
  110. package/templates/storefront-auto/lib/cart.ts +12 -0
  111. package/templates/storefront-auto/lib/cimplify-loader.ts +19 -0
  112. package/templates/storefront-auto/next.config.ts +45 -0
  113. package/templates/storefront-auto/package.json +35 -0
  114. package/templates/storefront-auto/postcss.config.mjs +7 -0
  115. package/templates/storefront-auto/tsconfig.json +23 -0
  116. package/templates/storefront-auto/vitest.config.ts +9 -0
  117. package/templates/storefront-bakery/.env.example +2 -2
  118. package/templates/storefront-bakery/README.md +1 -1
  119. package/templates/storefront-bakery/lib/cimplify-loader.ts +19 -0
  120. package/templates/storefront-bakery/next.config.ts +3 -0
  121. package/templates/storefront-bakery/package.json +1 -1
  122. package/templates/storefront-fashion/.env.example +2 -2
  123. package/templates/storefront-fashion/README.md +1 -1
  124. package/templates/storefront-fashion/lib/cimplify-loader.ts +19 -0
  125. package/templates/storefront-fashion/next.config.ts +3 -0
  126. package/templates/storefront-fashion/package.json +1 -1
  127. package/templates/storefront-grocery/.env.example +2 -2
  128. package/templates/storefront-grocery/README.md +1 -1
  129. package/templates/storefront-grocery/lib/cimplify-loader.ts +19 -0
  130. package/templates/storefront-grocery/next.config.ts +3 -0
  131. package/templates/storefront-grocery/package.json +1 -1
  132. package/templates/storefront-pharmacy/.claude/skills/cimplify-storefront/SKILL.md +145 -0
  133. package/templates/storefront-pharmacy/.cursor/rules/cimplify-storefront.mdc +25 -0
  134. package/templates/storefront-pharmacy/.env.example +22 -0
  135. package/templates/storefront-pharmacy/AGENTS.md +118 -0
  136. package/templates/storefront-pharmacy/CLAUDE.md +22 -0
  137. package/templates/storefront-pharmacy/README.md +87 -0
  138. package/templates/storefront-pharmacy/__tests__/brand.test.ts +4 -0
  139. package/templates/storefront-pharmacy/__tests__/cart-flow.test.ts +4 -0
  140. package/templates/storefront-pharmacy/__tests__/contract.test.ts +4 -0
  141. package/templates/storefront-pharmacy/app/.well-known/ucp/route.ts +65 -0
  142. package/templates/storefront-pharmacy/app/about/page.tsx +41 -0
  143. package/templates/storefront-pharmacy/app/accessibility/page.tsx +11 -0
  144. package/templates/storefront-pharmacy/app/account/addresses/page.tsx +21 -0
  145. package/templates/storefront-pharmacy/app/account/orders/page.tsx +21 -0
  146. package/templates/storefront-pharmacy/app/account/page.tsx +22 -0
  147. package/templates/storefront-pharmacy/app/account/settings/page.tsx +21 -0
  148. package/templates/storefront-pharmacy/app/cart/page.tsx +9 -0
  149. package/templates/storefront-pharmacy/app/categories/[slug]/listing-client.tsx +19 -0
  150. package/templates/storefront-pharmacy/app/categories/[slug]/page.tsx +130 -0
  151. package/templates/storefront-pharmacy/app/checkout/page.tsx +17 -0
  152. package/templates/storefront-pharmacy/app/collections/[slug]/listing-client.tsx +20 -0
  153. package/templates/storefront-pharmacy/app/collections/[slug]/page.tsx +130 -0
  154. package/templates/storefront-pharmacy/app/contact/contact-form.tsx +109 -0
  155. package/templates/storefront-pharmacy/app/contact/page.tsx +54 -0
  156. package/templates/storefront-pharmacy/app/error.tsx +61 -0
  157. package/templates/storefront-pharmacy/app/faq/page.tsx +46 -0
  158. package/templates/storefront-pharmacy/app/globals.css +47 -0
  159. package/templates/storefront-pharmacy/app/layout.tsx +77 -0
  160. package/templates/storefront-pharmacy/app/llms.txt/route.ts +94 -0
  161. package/templates/storefront-pharmacy/app/login/page.tsx +17 -0
  162. package/templates/storefront-pharmacy/app/not-found.tsx +39 -0
  163. package/templates/storefront-pharmacy/app/opensearch.xml/route.ts +37 -0
  164. package/templates/storefront-pharmacy/app/orders/[id]/page.tsx +24 -0
  165. package/templates/storefront-pharmacy/app/page.tsx +78 -0
  166. package/templates/storefront-pharmacy/app/privacy/page.tsx +44 -0
  167. package/templates/storefront-pharmacy/app/products/[slug]/page.tsx +165 -0
  168. package/templates/storefront-pharmacy/app/products/[slug]/product-detail.tsx +70 -0
  169. package/templates/storefront-pharmacy/app/returns/page.tsx +11 -0
  170. package/templates/storefront-pharmacy/app/robots.ts +18 -0
  171. package/templates/storefront-pharmacy/app/search/page.tsx +38 -0
  172. package/templates/storefront-pharmacy/app/search/search-client.tsx +7 -0
  173. package/templates/storefront-pharmacy/app/shipping/page.tsx +16 -0
  174. package/templates/storefront-pharmacy/app/shop/page.tsx +63 -0
  175. package/templates/storefront-pharmacy/app/shop/shop-client.tsx +32 -0
  176. package/templates/storefront-pharmacy/app/signup/page.tsx +17 -0
  177. package/templates/storefront-pharmacy/app/sitemap-page/page.tsx +167 -0
  178. package/templates/storefront-pharmacy/app/sitemap.ts +59 -0
  179. package/templates/storefront-pharmacy/app/terms/page.tsx +44 -0
  180. package/templates/storefront-pharmacy/app/track-order/page.tsx +24 -0
  181. package/templates/storefront-pharmacy/app/track-order/track-order-form.tsx +69 -0
  182. package/templates/storefront-pharmacy/components/account-iframe.tsx +13 -0
  183. package/templates/storefront-pharmacy/components/brand-marquee.tsx +27 -0
  184. package/templates/storefront-pharmacy/components/cart-drawer.tsx +14 -0
  185. package/templates/storefront-pharmacy/components/cart-pill.tsx +36 -0
  186. package/templates/storefront-pharmacy/components/category-grid.tsx +28 -0
  187. package/templates/storefront-pharmacy/components/category-tiles.tsx +104 -0
  188. package/templates/storefront-pharmacy/components/collection-strip.tsx +45 -0
  189. package/templates/storefront-pharmacy/components/feature-hero.tsx +84 -0
  190. package/templates/storefront-pharmacy/components/footer.tsx +153 -0
  191. package/templates/storefront-pharmacy/components/header.tsx +45 -0
  192. package/templates/storefront-pharmacy/components/health-brief.tsx +65 -0
  193. package/templates/storefront-pharmacy/components/hero.tsx +28 -0
  194. package/templates/storefront-pharmacy/components/nav-link.tsx +20 -0
  195. package/templates/storefront-pharmacy/components/newsletter.tsx +50 -0
  196. package/templates/storefront-pharmacy/components/pharmacy-hero.tsx +95 -0
  197. package/templates/storefront-pharmacy/components/policy-page.tsx +49 -0
  198. package/templates/storefront-pharmacy/components/promo-banner.tsx +41 -0
  199. package/templates/storefront-pharmacy/components/providers.tsx +35 -0
  200. package/templates/storefront-pharmacy/components/section-heading.tsx +37 -0
  201. package/templates/storefront-pharmacy/components/store-product-card.tsx +88 -0
  202. package/templates/storefront-pharmacy/components/symptom-finder.tsx +108 -0
  203. package/templates/storefront-pharmacy/components/trade-in-cta.tsx +54 -0
  204. package/templates/storefront-pharmacy/components/trust-bar.tsx +66 -0
  205. package/templates/storefront-pharmacy/components/urgent-ctas.tsx +117 -0
  206. package/templates/storefront-pharmacy/lib/brand.ts +790 -0
  207. package/templates/storefront-pharmacy/lib/cart.ts +12 -0
  208. package/templates/storefront-pharmacy/lib/cimplify-loader.ts +19 -0
  209. package/templates/storefront-pharmacy/next.config.ts +45 -0
  210. package/templates/storefront-pharmacy/package.json +35 -0
  211. package/templates/storefront-pharmacy/postcss.config.mjs +7 -0
  212. package/templates/storefront-pharmacy/tsconfig.json +23 -0
  213. package/templates/storefront-pharmacy/vitest.config.ts +9 -0
  214. package/templates/storefront-restaurant/.env.example +2 -2
  215. package/templates/storefront-restaurant/README.md +1 -1
  216. package/templates/storefront-restaurant/lib/cimplify-loader.ts +19 -0
  217. package/templates/storefront-restaurant/next.config.ts +3 -0
  218. package/templates/storefront-restaurant/package.json +1 -1
  219. package/templates/storefront-retail/.env.example +2 -2
  220. package/templates/storefront-retail/README.md +1 -1
  221. package/templates/storefront-retail/lib/cimplify-loader.ts +19 -0
  222. package/templates/storefront-retail/next.config.ts +3 -0
  223. package/templates/storefront-retail/package.json +1 -1
  224. package/templates/storefront-services/.env.example +2 -2
  225. package/templates/storefront-services/README.md +1 -1
  226. package/templates/storefront-services/lib/cimplify-loader.ts +19 -0
  227. package/templates/storefront-services/next.config.ts +3 -0
  228. package/templates/storefront-services/package.json +1 -1
  229. package/dist/repo-E6SBKVDG.mjs +0 -8
@@ -0,0 +1,744 @@
1
+ /**
2
+ * Brand & content configuration — the **single source of truth** for every
3
+ * visible string in this storefront.
4
+ *
5
+ * To rebrand the entire site, edit this file. Every page, component,
6
+ * metadata block, JSON-LD object, sitemap, robots.txt, and llms.txt entry
7
+ * reads from `brand`.
8
+ */
9
+ import type { SeedName } from "@cimplify/sdk/testing/suite";
10
+
11
+ export interface BrandSocial {
12
+ label: string;
13
+ href: string;
14
+ icon?: "instagram" | "x" | "tiktok" | "facebook" | "youtube" | "linkedin" | "whatsapp";
15
+ }
16
+
17
+ export interface BrandFaqEntry {
18
+ q: string;
19
+ a: string;
20
+ }
21
+
22
+ export interface BrandFaqSection {
23
+ title: string;
24
+ items: BrandFaqEntry[];
25
+ }
26
+
27
+ export interface BrandPolicySection {
28
+ heading: string;
29
+ body: string | { intro: string; bullets: string[] };
30
+ }
31
+
32
+ export interface BrandSitemapSection {
33
+ title: string;
34
+ links: { label: string; href: string }[];
35
+ }
36
+
37
+ export interface BrandFitmentMake {
38
+ /** Tag-friendly slug (lowercase, no spaces). Composes into `fits:<slug>`. */
39
+ slug: string;
40
+ /** Display name shown in the Make dropdown. */
41
+ name: string;
42
+ models: {
43
+ slug: string;
44
+ name: string;
45
+ years: number[];
46
+ }[];
47
+ }
48
+
49
+ export interface Brand {
50
+ // ─── Identity ─────────────────────────────────────────────────
51
+ name: string;
52
+ shortName: string;
53
+ microTag: string;
54
+ description: string;
55
+ schemaType:
56
+ | "Store"
57
+ | "Bakery"
58
+ | "Restaurant"
59
+ | "BeautySalon"
60
+ | "GroceryStore"
61
+ | "LocalBusiness"
62
+ | "Pharmacy"
63
+ | "AutoPartsStore"
64
+ | "Organization";
65
+
66
+ // ─── Currency / locale ────────────────────────────────────────
67
+ currency: string;
68
+ locale: string;
69
+
70
+ // ─── Contact ──────────────────────────────────────────────────
71
+ contact: {
72
+ address: string;
73
+ streetAddress: string;
74
+ city: string;
75
+ countryCode: string;
76
+ phone: string;
77
+ phoneTel: string;
78
+ email: string;
79
+ privacyEmail: string;
80
+ supportEmail?: string;
81
+ businessEmail?: string;
82
+ hours: string;
83
+ };
84
+
85
+ socials: BrandSocial[];
86
+
87
+ header: {
88
+ nav: { label: string; href: string }[];
89
+ };
90
+
91
+ hero: {
92
+ badge: string;
93
+ title: string;
94
+ subtitle: string;
95
+ primaryCtaLabel: string;
96
+ secondaryCtaLabel?: string;
97
+ secondaryCtaHref?: string;
98
+ };
99
+
100
+ trustItems?: { label: string; value: string; description: string; iconKey: string }[];
101
+
102
+ brandStrip?: {
103
+ headline: string;
104
+ brands: string[];
105
+ };
106
+
107
+ promo?: {
108
+ badge: string;
109
+ title: string;
110
+ body: string;
111
+ ctaLabel: string;
112
+ ctaHref: string;
113
+ };
114
+
115
+ /** Optional cross-template field; not rendered on the auto home page. */
116
+ tradeIn?: {
117
+ eyebrow: string;
118
+ title: string;
119
+ body: string;
120
+ primaryCtaLabel: string;
121
+ primaryCtaHref: string;
122
+ secondaryCtaLabel: string;
123
+ secondaryCtaHref: string;
124
+ steps: { step: string; title: string; body: string }[];
125
+ };
126
+
127
+ // ─── Fitment finder (auto-specific) ───────────────────────────
128
+ /**
129
+ * Vehicle make → model → year tree consumed by `<FitmentFinder/>`.
130
+ * Submitting the finder pushes `?fits=fits:<make>:<model>&y=<year>`
131
+ * onto /shop; the shop page filters the catalogue by matching tags
132
+ * on `MockProduct.tags`. Products tagged `fits:universal` always
133
+ * appear regardless of the selection.
134
+ */
135
+ fitments: {
136
+ eyebrow: string;
137
+ title: string;
138
+ description: string;
139
+ ctaLabel: string;
140
+ anyMakeLabel: string;
141
+ anyModelLabel: string;
142
+ anyYearLabel: string;
143
+ makes: BrandFitmentMake[];
144
+ };
145
+
146
+ // ─── Service brief (auto-specific) ────────────────────────────
147
+ /**
148
+ * Three editorial cards — the mechanic's brief. Replaces what is
149
+ * "best sellers" in retail. Curated around service intervals,
150
+ * seasonal checks, and partner workshops.
151
+ */
152
+ serviceBrief: {
153
+ eyebrow: string;
154
+ title: string;
155
+ cards: {
156
+ eyebrow: string;
157
+ title: string;
158
+ body: string;
159
+ ctaLabel: string;
160
+ ctaHref: string;
161
+ }[];
162
+ };
163
+
164
+ newsletter: {
165
+ eyebrow: string;
166
+ title: string;
167
+ body: string;
168
+ placeholder: string;
169
+ submitLabel: string;
170
+ successLabel: string;
171
+ };
172
+
173
+ about: {
174
+ eyebrow: string;
175
+ title: string;
176
+ paragraphs: string[];
177
+ sections: { heading: string; body: string }[];
178
+ };
179
+
180
+ faq: {
181
+ eyebrow: string;
182
+ title: string;
183
+ sections: BrandFaqSection[];
184
+ contactPrompt: string;
185
+ contactEmail: string;
186
+ };
187
+
188
+ terms: { eyebrow: string; title: string; lastUpdated: string; sections: BrandPolicySection[] };
189
+ privacy: { eyebrow: string; title: string; lastUpdated: string; sections: BrandPolicySection[] };
190
+ shipping: { eyebrow: string; title: string; lastUpdated: string; sections: BrandPolicySection[] };
191
+ returns: { eyebrow: string; title: string; lastUpdated: string; sections: BrandPolicySection[] };
192
+ accessibility: { eyebrow: string; title: string; lastUpdated: string; sections: BrandPolicySection[] };
193
+
194
+ account: {
195
+ loginEyebrow: string; loginTitle: string; loginSubtitle: string;
196
+ signupEyebrow: string; signupTitle: string; signupSubtitle: string;
197
+ accountEyebrow: string; accountTitle: string;
198
+ };
199
+
200
+ contactPage: {
201
+ eyebrow: string; title: string; body: string;
202
+ reasons: string[];
203
+ directLines: { label: string; value: string; href: string }[];
204
+ };
205
+
206
+ trackOrder: { eyebrow: string; title: string; body: string };
207
+
208
+ footer: {
209
+ blurb: string;
210
+ sitemap: BrandSitemapSection[];
211
+ poweredBy?: { label: string; href: string };
212
+ };
213
+
214
+ llms: {
215
+ summary: string;
216
+ };
217
+
218
+ mock: {
219
+ seed: SeedName;
220
+ businessId: string;
221
+ };
222
+ }
223
+
224
+ export const brand: Brand = {
225
+ name: "Driveline Auto Parts",
226
+ shortName: "Driveline",
227
+ microTag: "AUTO PARTS",
228
+ description:
229
+ "Genuine OEM and OEM-grade auto parts for every car on Ghanaian roads — oil, filters, brakes, batteries, tires. Same-day Accra delivery, 12-month warranty, partner workshops for fitting.",
230
+ schemaType: "AutoPartsStore",
231
+
232
+ currency: "GHS",
233
+ locale: "en_GH",
234
+
235
+ contact: {
236
+ address: "Spintex Road, Accra",
237
+ streetAddress: "Spintex Road, Tema-Accra Highway",
238
+ city: "Accra",
239
+ countryCode: "GH",
240
+ phone: "+233 244 600 600",
241
+ phoneTel: "+233244600600",
242
+ email: "parts@drivelineauto.test",
243
+ privacyEmail: "privacy@drivelineauto.test",
244
+ supportEmail: "parts@drivelineauto.test",
245
+ businessEmail: "wholesale@drivelineauto.test",
246
+ hours: "Mon–Sat · 7am–8pm · Sun 10am–6pm",
247
+ },
248
+
249
+ socials: [
250
+ { label: "Instagram", href: "https://instagram.com/drivelineauto", icon: "instagram" },
251
+ { label: "Facebook", href: "https://facebook.com/drivelineauto", icon: "facebook" },
252
+ { label: "WhatsApp", href: "https://wa.me/233244600600", icon: "whatsapp" },
253
+ ],
254
+
255
+ header: {
256
+ nav: [
257
+ { label: "Shop", href: "/shop" },
258
+ { label: "By vehicle", href: "/#fitment" },
259
+ { label: "Workshops", href: "/contact" },
260
+ ],
261
+ },
262
+
263
+ hero: {
264
+ badge: "GENUINE · SAME-DAY · WARRANTED",
265
+ title: "Built for the roads. Stocked for today.",
266
+ subtitle: "Genuine OEM and OEM-grade parts for every popular car in Ghana. Free same-day Accra delivery. Partner workshops for fitting. 12-month warranty on every part.",
267
+ primaryCtaLabel: "Shop the catalogue",
268
+ secondaryCtaLabel: "Find by vehicle",
269
+ secondaryCtaHref: "/shop",
270
+ },
271
+
272
+ trustItems: [
273
+ {
274
+ label: "Genuine",
275
+ value: "OEM & OEM-grade only",
276
+ description: "Sourced direct from authorised distributors. No counterfeit risk.",
277
+ iconKey: "verified",
278
+ },
279
+ {
280
+ label: "Warranty",
281
+ value: "12 months · parts & labour",
282
+ description: "On every part we sell, including fitting at partner workshops.",
283
+ iconKey: "warranty",
284
+ },
285
+ {
286
+ label: "Same-day",
287
+ value: "Free across Accra",
288
+ description: "Order by 4pm. Tema and East-Legon depots for next-day rest of Ghana.",
289
+ iconKey: "delivery",
290
+ },
291
+ {
292
+ label: "Fitment",
293
+ value: "Verified by parts team",
294
+ description: "Every match double-checked before dispatch. Wrong fit? Free exchange.",
295
+ iconKey: "support",
296
+ },
297
+ ],
298
+
299
+ brandStrip: {
300
+ headline: "Authorised distributor · OEM and OEM-grade · 12-month warranty",
301
+ brands: [
302
+ "Bosch",
303
+ "Mobil 1",
304
+ "Castrol",
305
+ "Total",
306
+ "NGK",
307
+ "Brembo",
308
+ "Bridgestone",
309
+ "Michelin",
310
+ "Yokohama",
311
+ "Philips",
312
+ ],
313
+ },
314
+
315
+ fitments: {
316
+ eyebrow: "Find your part",
317
+ title: "What are you driving?",
318
+ description: "Pick your make, model, and year. We'll filter the whole catalogue to parts that actually fit. Universal items (oil, wipers, tools) always show.",
319
+ ctaLabel: "Show me parts",
320
+ anyMakeLabel: "Any make",
321
+ anyModelLabel: "Any model",
322
+ anyYearLabel: "Any year",
323
+ makes: [
324
+ {
325
+ slug: "toyota",
326
+ name: "Toyota",
327
+ models: [
328
+ { slug: "corolla", name: "Corolla", years: [2024, 2023, 2022, 2021, 2020, 2019, 2018, 2017, 2016, 2015, 2014] },
329
+ { slug: "camry", name: "Camry", years: [2024, 2023, 2022, 2021, 2020, 2019, 2018, 2017] },
330
+ { slug: "yaris", name: "Yaris", years: [2024, 2023, 2022, 2021, 2020, 2019, 2018] },
331
+ { slug: "hilux", name: "Hilux", years: [2024, 2023, 2022, 2021, 2020, 2019, 2018, 2017, 2016] },
332
+ { slug: "rav4", name: "RAV4", years: [2024, 2023, 2022, 2021, 2020, 2019, 2018] },
333
+ ],
334
+ },
335
+ {
336
+ slug: "honda",
337
+ name: "Honda",
338
+ models: [
339
+ { slug: "civic", name: "Civic", years: [2023, 2022, 2021, 2020, 2019, 2018, 2017, 2016] },
340
+ { slug: "accord", name: "Accord", years: [2024, 2023, 2022, 2021, 2020, 2019, 2018] },
341
+ { slug: "cr-v", name: "CR-V", years: [2023, 2022, 2021, 2020, 2019, 2018, 2017, 2016] },
342
+ ],
343
+ },
344
+ {
345
+ slug: "nissan",
346
+ name: "Nissan",
347
+ models: [
348
+ { slug: "almera", name: "Almera", years: [2024, 2023, 2022, 2021, 2020, 2019, 2018, 2017, 2016, 2015] },
349
+ { slug: "sentra", name: "Sentra", years: [2024, 2023, 2022, 2021, 2020, 2019, 2018, 2017, 2016, 2015] },
350
+ { slug: "x-trail", name: "X-Trail", years: [2024, 2023, 2022, 2021, 2020, 2019, 2018] },
351
+ ],
352
+ },
353
+ {
354
+ slug: "hyundai",
355
+ name: "Hyundai",
356
+ models: [
357
+ { slug: "elantra", name: "Elantra", years: [2024, 2023, 2022, 2021, 2020, 2019, 2018, 2017] },
358
+ { slug: "tucson", name: "Tucson", years: [2024, 2023, 2022, 2021, 2020, 2019, 2018] },
359
+ { slug: "sonata", name: "Sonata", years: [2023, 2022, 2021, 2020, 2019, 2018] },
360
+ ],
361
+ },
362
+ {
363
+ slug: "kia",
364
+ name: "Kia",
365
+ models: [
366
+ { slug: "rio", name: "Rio", years: [2024, 2023, 2022, 2021, 2020, 2019, 2018] },
367
+ { slug: "sportage", name: "Sportage", years: [2024, 2023, 2022, 2021, 2020, 2019, 2018] },
368
+ { slug: "cerato", name: "Cerato", years: [2024, 2023, 2022, 2021, 2020, 2019, 2018] },
369
+ ],
370
+ },
371
+ {
372
+ slug: "ford",
373
+ name: "Ford",
374
+ models: [
375
+ { slug: "ranger", name: "Ranger", years: [2024, 2023, 2022, 2021, 2020, 2019, 2018, 2017, 2016] },
376
+ { slug: "focus", name: "Focus", years: [2018, 2017, 2016, 2015, 2014] },
377
+ ],
378
+ },
379
+ {
380
+ slug: "mazda",
381
+ name: "Mazda",
382
+ models: [
383
+ { slug: "3", name: "Mazda 3", years: [2024, 2023, 2022, 2021, 2020, 2019, 2018] },
384
+ { slug: "cx-5", name: "CX-5", years: [2024, 2023, 2022, 2021, 2020, 2019, 2018] },
385
+ ],
386
+ },
387
+ {
388
+ slug: "volkswagen",
389
+ name: "Volkswagen",
390
+ models: [
391
+ { slug: "jetta", name: "Jetta", years: [2023, 2022, 2021, 2020, 2019, 2018] },
392
+ { slug: "polo", name: "Polo", years: [2023, 2022, 2021, 2020, 2019, 2018] },
393
+ ],
394
+ },
395
+ ],
396
+ },
397
+
398
+ serviceBrief: {
399
+ eyebrow: "The mechanic's brief",
400
+ title: "Stay ahead of your service.",
401
+ cards: [
402
+ {
403
+ eyebrow: "Every 10,000 km",
404
+ title: "Oil and filter — done in 30 minutes.",
405
+ body: "We bundle 5L of synthetic oil + oil filter for most popular cars at one click. Drop off at our Spintex counter and a partner workshop will swap it in 30 minutes for GH₵80.",
406
+ ctaLabel: "Browse the service kit",
407
+ ctaHref: "/collections/service-kit",
408
+ },
409
+ {
410
+ eyebrow: "Rainy season",
411
+ title: "Wipers, washer fluid, brake pads.",
412
+ body: "Three things to check before the rains: blade flexibility, washer-fluid level, and brake-pad thickness. We stock OEM-grade wipers and pads for every popular car in Accra.",
413
+ ctaLabel: "See rainy-season kit",
414
+ ctaHref: "/categories/wipers",
415
+ },
416
+ {
417
+ eyebrow: "Harmattan",
418
+ title: "Replace the air and cabin filters.",
419
+ body: "Harmattan dust shortens filter life by 40%. Swap your cabin and engine air filters in December — your AC and fuel economy will thank you.",
420
+ ctaLabel: "Shop filters",
421
+ ctaHref: "/categories/filters",
422
+ },
423
+ ],
424
+ },
425
+
426
+ newsletter: {
427
+ eyebrow: "Parts brief",
428
+ title: "Service reminders + restocks.",
429
+ body: "Once a month, our parts team emails a short brief — what's new on the shelf, what's running low, and a reminder if your service is due. No spam.",
430
+ placeholder: "you@email.com",
431
+ submitLabel: "Subscribe",
432
+ successLabel: "Subscribed ✓",
433
+ },
434
+
435
+ about: {
436
+ eyebrow: "About Driveline",
437
+ title: "Parts that fit.\nFirst time, every time.",
438
+ paragraphs: [
439
+ "Driveline started on Spintex Road in 2014 because too many drivers were buying brake pads that didn't fit, oil filters that didn't seal, and batteries that died in six months. We figured: if a parts shop is going to be honest about fitment, it might as well be us.",
440
+ "Today we're an authorised distributor for Bosch, Mobil 1, Castrol, NGK, Brembo, Bridgestone, and a dozen more. Every part is sourced direct from the manufacturer or an authorised regional distributor. Every fitment is double-checked by our parts team before dispatch — and if we get it wrong, we cover return shipping and ship the right one same-day.",
441
+ "We deliver across Greater Accra same-day for free. Outside Accra, we use a partner courier with tracking. Need fitting? Our partner workshops on Spintex, Tema Industrial, and East Legon offer flat-rate installation from GH₵80.",
442
+ ],
443
+ sections: [
444
+ {
445
+ heading: "Wholesale & fleet",
446
+ body: "Run a fleet, a workshop, or a logistics company? We do volume pricing, terms, and consolidated monthly invoicing. Email wholesale@drivelineauto.test.",
447
+ },
448
+ {
449
+ heading: "Installation partners",
450
+ body: "Three partner workshops in Greater Accra do flat-rate fitting from GH₵80 (oil change) up to GH₵350 (brake job). Book at checkout or on WhatsApp.",
451
+ },
452
+ {
453
+ heading: "Visit",
454
+ body: "Spintex Road, opposite Palace Mall · Mon–Sat 7am–8pm · Sun 10am–6pm. Free parking out front.",
455
+ },
456
+ ],
457
+ },
458
+
459
+ faq: {
460
+ eyebrow: "Help",
461
+ title: "Common questions.",
462
+ sections: [
463
+ {
464
+ title: "Fitment & ordering",
465
+ items: [
466
+ {
467
+ q: "How do I know a part fits my car?",
468
+ a: "Use the fitment finder on the home page — pick Make → Model → Year and the whole catalogue filters down to parts that fit. Each product page also lists the exact years and trims. When in doubt, WhatsApp us with your VIN.",
469
+ },
470
+ {
471
+ q: "What if I order the wrong part?",
472
+ a: "If we get the fitment wrong, we cover return shipping and ship the right one same-day. If you order outside the listed fitment, you cover return shipping but we'll exchange it within 30 days, unused.",
473
+ },
474
+ {
475
+ q: "Do you sell genuine OEM?",
476
+ a: "Yes — wherever the OEM has authorised distribution in Ghana. For brands without official import, we stock OEM-grade alternatives from named premium manufacturers (Bosch, Brembo, NGK, etc.). We mark this clearly on each product page.",
477
+ },
478
+ ],
479
+ },
480
+ {
481
+ title: "Delivery & fitting",
482
+ items: [
483
+ {
484
+ q: "How fast is delivery?",
485
+ a: "Free same-day within Greater Accra for orders placed before 4pm. Outside Accra, partner courier with tracking; usually 1–3 business days.",
486
+ },
487
+ {
488
+ q: "Can you fit the part for me?",
489
+ a: "Yes. Three partner workshops on Spintex, Tema Industrial, and East Legon do flat-rate fitting from GH₵80 (oil change) up to GH₵350 (brake job). Book at checkout or WhatsApp +233 244 600 600.",
490
+ },
491
+ {
492
+ q: "Do you deliver tires installed?",
493
+ a: "Yes — pay for the tire online plus a GH₵60 fitting fee, and our partner shop on Spintex will install (mount, balance, valve, disposal of old tire) when you drop off the wheel.",
494
+ },
495
+ ],
496
+ },
497
+ {
498
+ title: "Warranty",
499
+ items: [
500
+ {
501
+ q: "What does the 12-month warranty cover?",
502
+ a: "Manufacturing defects on every part: brakes that warp, batteries that die early, alternators that fail, wipers that streak. We don't cover damage from incorrect installation or modification.",
503
+ },
504
+ {
505
+ q: "If I install at a partner workshop, is fitting covered?",
506
+ a: "Yes. Partner-workshop installations carry both our parts warranty and the workshop's labour warranty — 12 months on both, billed as one claim if anything goes wrong.",
507
+ },
508
+ {
509
+ q: "Are batteries pro-rated?",
510
+ a: "No. If a battery fails within 24 months, we replace it free. After 24 months, we offer a 25% discount on the upgrade as a loyalty credit.",
511
+ },
512
+ ],
513
+ },
514
+ {
515
+ title: "Payment & wholesale",
516
+ items: [
517
+ {
518
+ q: "What payment methods do you accept?",
519
+ a: "Mobile Money (MTN, Telecel, AirtelTigo), Visa/Mastercard, cash on delivery in Accra, and 30-day net terms for approved wholesale accounts.",
520
+ },
521
+ {
522
+ q: "Do you offer fleet pricing?",
523
+ a: "Yes. Logistics, ride-hailing, and corporate fleets: email wholesale@drivelineauto.test with your fleet size and monthly volume for tier pricing.",
524
+ },
525
+ ],
526
+ },
527
+ ],
528
+ contactPrompt: "Still stuck? Email",
529
+ contactEmail: "parts@drivelineauto.test",
530
+ },
531
+
532
+ terms: {
533
+ eyebrow: "Terms of service",
534
+ title: "Terms of Service",
535
+ lastUpdated: "1 May 2026",
536
+ sections: [
537
+ {
538
+ heading: "1. Who we are",
539
+ body: "Driveline Auto Parts (\"we\", \"us\") is a registered auto-parts retailer at Spintex Road, Accra. By placing an order, you (\"you\", \"customer\") agree to these terms.",
540
+ },
541
+ {
542
+ heading: "2. Fitment",
543
+ body: "Every product page lists the makes, models, and year ranges the part is verified to fit. We double-check fitment before dispatch. If our fitment data is wrong, we cover return shipping and replace the part free of charge.",
544
+ },
545
+ {
546
+ heading: "3. Pricing and payment",
547
+ body: "Prices are in Ghana Cedis (GH₵) and include VAT where applicable. We accept Mobile Money, card, and cash on delivery within Accra. Wholesale accounts may apply for 30-day net terms.",
548
+ },
549
+ {
550
+ heading: "4. Warranty",
551
+ body: "Every part carries a 12-month warranty covering manufacturing defects. Damage from incorrect installation, misuse, or unrelated mechanical failure is excluded. Batteries are warrantied 24 months at full replacement, 25% credit for years 3–4.",
552
+ },
553
+ {
554
+ heading: "5. Returns",
555
+ body: "Sealed parts in original packaging: 30 days, no questions asked. Electrical parts (bulbs, batteries, dashcams): exchange-only once installed. Custom-order or special-import parts: non-refundable except for defects.",
556
+ },
557
+ {
558
+ heading: "6. Fitting",
559
+ body: "Installation at partner workshops is billed by the workshop. Our warranty covers the part; the workshop's warranty covers the labour. We will mediate any combined claim within 30 days.",
560
+ },
561
+ {
562
+ heading: "7. Liability",
563
+ body: "To the maximum extent permitted by Ghanaian law, our liability is limited to the value of the order. We are not liable for consequential losses including vehicle downtime or onward travel.",
564
+ },
565
+ {
566
+ heading: "8. Governing law",
567
+ body: "These terms are governed by the laws of Ghana. Disputes will be resolved in the courts of Greater Accra.",
568
+ },
569
+ {
570
+ heading: "9. Contact",
571
+ body: "Questions? Email parts@drivelineauto.test.",
572
+ },
573
+ ],
574
+ },
575
+
576
+ privacy: {
577
+ eyebrow: "Privacy",
578
+ title: "Privacy Policy",
579
+ lastUpdated: "1 May 2026",
580
+ sections: [
581
+ {
582
+ heading: "What we collect",
583
+ body: "We collect what we need to fulfil your order: name, phone, delivery address, email, vehicle make/model/year (so we can recommend correct parts), and the items in your cart. Payment details are processed by our payment partners and never stored on our servers.",
584
+ },
585
+ {
586
+ heading: "How we use it",
587
+ body: {
588
+ intro: "We use your data to:",
589
+ bullets: [
590
+ "Recommend parts that match your vehicle.",
591
+ "Prepare and deliver your order.",
592
+ "Send order updates by SMS and email.",
593
+ "Remind you when service is due (only if you opted in).",
594
+ "Improve fitment data based on aggregated, anonymised browsing.",
595
+ ],
596
+ },
597
+ },
598
+ {
599
+ heading: "Who we share it with",
600
+ body: "We share data only with the partners required to fulfil your order: payment processors, delivery couriers (DHL, local riders), and partner workshops (only when you book fitting). We never sell personal data.",
601
+ },
602
+ {
603
+ heading: "Cookies",
604
+ body: "We use strictly-necessary cookies for the cart and your session, plus optional analytics cookies you can disable in our banner.",
605
+ },
606
+ {
607
+ heading: "Your rights",
608
+ body: "Under the Ghana Data Protection Act, 2012 (Act 843), you have the right to access, correct, or delete your data (subject to our tax-record retention obligations). Email privacy@drivelineauto.test.",
609
+ },
610
+ {
611
+ heading: "Retention",
612
+ body: "Order records: 7 years for Ghanaian tax compliance. Warranty records: 24 months past warranty end. Service-reminder opt-ins: until you unsubscribe.",
613
+ },
614
+ ],
615
+ },
616
+
617
+ shipping: {
618
+ eyebrow: "Delivery",
619
+ title: "Delivery & Pickup",
620
+ lastUpdated: "1 May 2026",
621
+ sections: [
622
+ { heading: "Same-day Greater Accra", body: "Free for every order. Place by 4pm; delivered same evening." },
623
+ { heading: "Outside Accra", body: "Partner courier nationwide; 1–3 business days with tracking." },
624
+ { heading: "Pickup", body: "Spintex Road, opposite Palace Mall. Mon–Sat 7am–8pm, Sun 10am–6pm. Most orders ready in 30 minutes." },
625
+ { heading: "Bulky / oversize", body: "Tires, exhausts, body panels: signature delivery, window confirmed 24h before." },
626
+ { heading: "Fitting", body: "Add fitting at checkout. Partner workshop coordinates a drop-off window with you." },
627
+ ],
628
+ },
629
+
630
+ returns: {
631
+ eyebrow: "Returns",
632
+ title: "Returns & Warranty",
633
+ lastUpdated: "1 May 2026",
634
+ sections: [
635
+ { heading: "Sealed parts", body: "30 days, no questions asked, original packaging required." },
636
+ { heading: "Installed electrical parts", body: "Exchange-only on bulbs, batteries, dashcams once installed." },
637
+ { heading: "12-month parts warranty", body: "Manufacturing defects on every part. Damage from misuse or wrong installation excluded." },
638
+ { heading: "Battery warranty", body: "24 months free replacement; 25% credit toward an upgrade in years 3–4." },
639
+ { heading: "How to start", body: "WhatsApp +233 244 600 600 or email parts@drivelineauto.test with your order number." },
640
+ ],
641
+ },
642
+
643
+ accessibility: {
644
+ eyebrow: "Accessibility",
645
+ title: "Accessibility Statement",
646
+ lastUpdated: "1 May 2026",
647
+ sections: [
648
+ { heading: "Our commitment", body: "We aim for WCAG 2.1 AA on this site and test against it on every release." },
649
+ { heading: "What we've done", body: { intro: "Specifically, we've:", bullets: [
650
+ "Maintained a minimum 4.5:1 contrast ratio on body text.",
651
+ "Made every interactive element keyboard-reachable.",
652
+ "Provided phone, WhatsApp, and in-store alternatives for every online action.",
653
+ "Respected `prefers-reduced-motion`.",
654
+ ] } },
655
+ { heading: "In-store accessibility", body: "Ramped entrance, accessible counter, large-print parts catalogue available on request." },
656
+ { heading: "Reporting", body: "Email parts@drivelineauto.test — we respond within 5 business days." },
657
+ ],
658
+ },
659
+
660
+ account: {
661
+ loginEyebrow: "Welcome back",
662
+ loginTitle: "Sign in to Driveline",
663
+ loginSubtitle: "Save your vehicle, track orders, and view your warranty.",
664
+ signupEyebrow: "Welcome",
665
+ signupTitle: "Create your Driveline account",
666
+ signupSubtitle: "Save your vehicle so every part you see is pre-filtered to fit. Track orders, manage warranty, set service reminders.",
667
+ accountEyebrow: "Your account",
668
+ accountTitle: "Welcome back",
669
+ },
670
+
671
+ contactPage: {
672
+ eyebrow: "Contact",
673
+ title: "Talk to our parts team.",
674
+ body: "Fitment question, order issue, fleet enquiry — WhatsApp is fastest, but the email gets read within a few hours.",
675
+ reasons: ["A fitment question", "An order issue", "Warranty claim", "Book fitting", "Wholesale / fleet", "Returns"],
676
+ directLines: [
677
+ { label: "WhatsApp", value: "+233 244 600 600", href: "https://wa.me/233244600600" },
678
+ { label: "Phone", value: "+233 244 600 600", href: "tel:+233244600600" },
679
+ { label: "Email", value: "parts@drivelineauto.test", href: "mailto:parts@drivelineauto.test" },
680
+ ],
681
+ },
682
+
683
+ trackOrder: {
684
+ eyebrow: "Track an order",
685
+ title: "Where's my order?",
686
+ body: "Enter your order number and email. We'll show the live status, courier tracking, and ETA.",
687
+ },
688
+
689
+ footer: {
690
+ blurb: "Authorised distributor for Bosch, Mobil 1, Castrol, NGK, Brembo. Same-day Accra delivery; nationwide via partner courier. 12-month warranty on every part.",
691
+ sitemap: [
692
+ {
693
+ title: "Shop",
694
+ links: [
695
+ { label: "All parts", href: "/shop" },
696
+ { label: "Engine oil & fluids", href: "/categories/engine-oil" },
697
+ { label: "Filters", href: "/categories/filters" },
698
+ { label: "Brakes", href: "/categories/brakes" },
699
+ { label: "Batteries", href: "/categories/batteries" },
700
+ { label: "Tires", href: "/categories/tires" },
701
+ ],
702
+ },
703
+ {
704
+ title: "Care",
705
+ links: [
706
+ { label: "Contact a parts adviser", href: "/contact" },
707
+ { label: "Track an order", href: "/track-order" },
708
+ { label: "Delivery", href: "/shipping" },
709
+ { label: "Returns & warranty", href: "/returns" },
710
+ { label: "FAQ", href: "/faq" },
711
+ ],
712
+ },
713
+ {
714
+ title: "Account",
715
+ links: [
716
+ { label: "Sign in", href: "/login" },
717
+ { label: "Create account", href: "/signup" },
718
+ { label: "Your orders", href: "/account/orders" },
719
+ { label: "Settings", href: "/account/settings" },
720
+ ],
721
+ },
722
+ {
723
+ title: "Legal",
724
+ links: [
725
+ { label: "Terms of Service", href: "/terms" },
726
+ { label: "Privacy Policy", href: "/privacy" },
727
+ { label: "Accessibility", href: "/accessibility" },
728
+ { label: "Sitemap", href: "/sitemap-page" },
729
+ ],
730
+ },
731
+ ],
732
+ poweredBy: { label: "Cimplify", href: "https://app.cimplify.io" },
733
+ },
734
+
735
+ llms: {
736
+ summary:
737
+ "Authorised auto-parts distributor in Accra. Stocks genuine OEM and OEM-grade engine oil, filters, brakes, batteries, tires, bulbs, wipers, and tools for every popular car in Ghana. Vehicle fitment finder on the home page filters the catalogue by make/model/year. Free same-day delivery in Greater Accra. Partner workshops for flat-rate fitting from GH₵80. 12-month warranty on every part.",
738
+ },
739
+
740
+ mock: {
741
+ seed: "auto",
742
+ businessId: "bus_driveline_auto",
743
+ },
744
+ };