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.
Files changed (32) hide show
  1. package/dist/index.js +12 -1
  2. package/messages/en.json +382 -378
  3. package/messages/he.json +382 -378
  4. package/package.json +46 -46
  5. package/templates/nextjs/base/next.config.ts +31 -31
  6. package/templates/nextjs/base/src/app/account/page.tsx +1 -1
  7. package/templates/nextjs/base/src/app/auth/callback/page.tsx +2 -1
  8. package/templates/nextjs/base/src/app/cart/page.tsx +1 -1
  9. package/templates/nextjs/base/src/app/checkout/page.tsx +973 -972
  10. package/templates/nextjs/base/src/app/forgot-password/page.tsx +1 -1
  11. package/templates/nextjs/base/src/app/layout.tsx.ejs +6 -5
  12. package/templates/nextjs/base/src/app/login/page.tsx +1 -2
  13. package/templates/nextjs/base/src/app/order-confirmation/page.tsx +271 -271
  14. package/templates/nextjs/base/src/app/page.tsx +1 -1
  15. package/templates/nextjs/base/src/app/payment-complete/page.tsx +59 -59
  16. package/templates/nextjs/base/src/app/products/[slug]/product-client-section.tsx +27 -12
  17. package/templates/nextjs/base/src/app/products/page.tsx +8 -3
  18. package/templates/nextjs/base/src/app/register/page.tsx +1 -2
  19. package/templates/nextjs/base/src/app/reset-password/page.tsx +1 -2
  20. package/templates/nextjs/base/src/app/verify-email/page.tsx +1 -2
  21. package/templates/nextjs/base/src/components/auth/login-form.tsx +1 -1
  22. package/templates/nextjs/base/src/components/checkout/custom-fields-step.tsx +258 -184
  23. package/templates/nextjs/base/src/components/checkout/payment-step.tsx +592 -592
  24. package/templates/nextjs/base/src/components/layout/footer.tsx +1 -1
  25. package/templates/nextjs/base/src/components/layout/header.tsx +1 -2
  26. package/templates/nextjs/base/src/components/products/product-card.tsx +1 -2
  27. package/templates/nextjs/base/src/components/products/recommendation-section.tsx +1 -1
  28. package/templates/nextjs/base/src/lib/navigation.tsx.ejs +60 -0
  29. package/templates/nextjs/themes/luxury/globals.css +399 -399
  30. package/templates/nextjs/themes/luxury/theme.json +23 -23
  31. package/templates/nextjs/themes/playful/globals.css +400 -400
  32. 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
+ }