create-brainerce-store 1.27.4 → 1.27.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +12 -1
- package/messages/en.json +382 -378
- package/messages/he.json +382 -378
- package/package.json +46 -46
- package/templates/nextjs/base/next.config.ts +31 -31
- package/templates/nextjs/base/src/app/account/page.tsx +1 -1
- package/templates/nextjs/base/src/app/auth/callback/page.tsx +2 -1
- package/templates/nextjs/base/src/app/cart/page.tsx +1 -1
- package/templates/nextjs/base/src/app/checkout/page.tsx +973 -972
- package/templates/nextjs/base/src/app/forgot-password/page.tsx +1 -1
- package/templates/nextjs/base/src/app/layout.tsx.ejs +6 -5
- package/templates/nextjs/base/src/app/login/page.tsx +1 -2
- package/templates/nextjs/base/src/app/order-confirmation/page.tsx +271 -271
- package/templates/nextjs/base/src/app/page.tsx +1 -1
- package/templates/nextjs/base/src/app/payment-complete/page.tsx +59 -59
- package/templates/nextjs/base/src/app/products/[slug]/product-client-section.tsx +27 -12
- package/templates/nextjs/base/src/app/products/page.tsx +8 -3
- package/templates/nextjs/base/src/app/register/page.tsx +1 -2
- package/templates/nextjs/base/src/app/reset-password/page.tsx +1 -2
- package/templates/nextjs/base/src/app/verify-email/page.tsx +1 -2
- package/templates/nextjs/base/src/components/auth/login-form.tsx +1 -1
- package/templates/nextjs/base/src/components/checkout/custom-fields-step.tsx +258 -184
- package/templates/nextjs/base/src/components/checkout/payment-step.tsx +592 -592
- package/templates/nextjs/base/src/components/layout/footer.tsx +1 -1
- package/templates/nextjs/base/src/components/layout/header.tsx +1 -2
- package/templates/nextjs/base/src/components/products/product-card.tsx +1 -2
- package/templates/nextjs/base/src/components/products/recommendation-section.tsx +1 -1
- package/templates/nextjs/base/src/lib/navigation.tsx.ejs +60 -0
- package/templates/nextjs/themes/luxury/globals.css +399 -399
- package/templates/nextjs/themes/luxury/theme.json +23 -23
- package/templates/nextjs/themes/playful/globals.css +400 -400
- package/templates/nextjs/themes/playful/theme.json +23 -23
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "Playful",
|
|
3
|
-
"description": "Warm, vibrant design with Nunito rounded font and energetic pink-purple palette",
|
|
4
|
-
"font": {
|
|
5
|
-
"family": "Nunito",
|
|
6
|
-
"import": "next/font/google"
|
|
7
|
-
},
|
|
8
|
-
"colors": {
|
|
9
|
-
"background": "0 0% 99%",
|
|
10
|
-
"foreground": "260 25% 16%",
|
|
11
|
-
"primary": "330 75% 56%",
|
|
12
|
-
"primary-foreground": "0 0% 100%",
|
|
13
|
-
"secondary": "260 50% 94%",
|
|
14
|
-
"secondary-foreground": "260 25% 16%",
|
|
15
|
-
"muted": "270 30% 95%",
|
|
16
|
-
"muted-foreground": "260 10% 45%",
|
|
17
|
-
"accent": "280 60% 60%",
|
|
18
|
-
"accent-foreground": "0 0% 100%",
|
|
19
|
-
"destructive": "0 84% 60%",
|
|
20
|
-
"border": "270 20% 88%"
|
|
21
|
-
},
|
|
22
|
-
"radius": "1rem"
|
|
23
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "Playful",
|
|
3
|
+
"description": "Warm, vibrant design with Nunito rounded font and energetic pink-purple palette",
|
|
4
|
+
"font": {
|
|
5
|
+
"family": "Nunito",
|
|
6
|
+
"import": "next/font/google"
|
|
7
|
+
},
|
|
8
|
+
"colors": {
|
|
9
|
+
"background": "0 0% 99%",
|
|
10
|
+
"foreground": "260 25% 16%",
|
|
11
|
+
"primary": "330 75% 56%",
|
|
12
|
+
"primary-foreground": "0 0% 100%",
|
|
13
|
+
"secondary": "260 50% 94%",
|
|
14
|
+
"secondary-foreground": "260 25% 16%",
|
|
15
|
+
"muted": "270 30% 95%",
|
|
16
|
+
"muted-foreground": "260 10% 45%",
|
|
17
|
+
"accent": "280 60% 60%",
|
|
18
|
+
"accent-foreground": "0 0% 100%",
|
|
19
|
+
"destructive": "0 84% 60%",
|
|
20
|
+
"border": "270 20% 88%"
|
|
21
|
+
},
|
|
22
|
+
"radius": "1rem"
|
|
23
|
+
}
|