@digilogiclabs/create-saas-app 2.8.1 → 2.9.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 (74) hide show
  1. package/dist/.tsbuildinfo +1 -1
  2. package/dist/generators/template-generator.js +8 -8
  3. package/dist/generators/template-generator.js.map +1 -1
  4. package/dist/templates/shared/quality/web/src/__tests__/accessibility.test.tsx +3 -3
  5. package/dist/templates/web/ai-platform/template/src/app/page.tsx +207 -207
  6. package/dist/templates/web/base/template/src/app/dashboard/page.tsx +6 -43
  7. package/dist/templates/web/base/template/src/app/page.tsx +2 -2
  8. package/dist/templates/web/ui-auth/template/src/app/dev-setup/page.tsx +800 -800
  9. package/dist/templates/web/ui-auth/template/src/app/login/page.tsx +109 -109
  10. package/dist/templates/web/ui-auth/template/src/app/page.tsx +3 -3
  11. package/dist/templates/web/ui-auth/template/src/app/signup/page.tsx +128 -128
  12. package/dist/templates/web/ui-auth-ai/template/src/app/globals.css +35 -40
  13. package/dist/templates/web/ui-auth-ai/template/src/app/layout.tsx +1 -0
  14. package/dist/templates/web/ui-auth-payments/template/src/app/checkout/page.tsx +3 -3
  15. package/dist/templates/web/ui-auth-payments/template/src/app/dashboard/page.tsx +10 -49
  16. package/dist/templates/web/ui-auth-payments/template/src/app/dev-setup/page.tsx +800 -800
  17. package/dist/templates/web/ui-auth-payments/template/src/app/login/page.tsx +109 -109
  18. package/dist/templates/web/ui-auth-payments/template/src/app/page.tsx +350 -350
  19. package/dist/templates/web/ui-auth-payments/template/src/app/setup/page.tsx +506 -506
  20. package/dist/templates/web/ui-auth-payments/template/src/app/signup/page.tsx +128 -128
  21. package/dist/templates/web/ui-auth-payments/template/src/components/client/login-form.tsx +143 -143
  22. package/dist/templates/web/ui-auth-payments/template/src/components/client/signup-form.tsx +184 -184
  23. package/dist/templates/web/ui-auth-payments-ai/template/src/app/billing/page.tsx +143 -233
  24. package/dist/templates/web/ui-auth-payments-ai/template/src/app/dashboard/page.tsx +10 -50
  25. package/dist/templates/web/ui-auth-payments-ai/template/src/app/dev-setup/page.tsx +800 -800
  26. package/dist/templates/web/ui-auth-payments-ai/template/src/app/onboarding/page.tsx +325 -364
  27. package/dist/templates/web/ui-auth-payments-ai/template/src/app/page.tsx +1 -1
  28. package/dist/templates/web/ui-auth-payments-ai/template/src/app/settings/page.tsx +389 -532
  29. package/dist/templates/web/ui-auth-payments-ai/template/src/app/setup/page.tsx +644 -644
  30. package/dist/templates/web/ui-auth-payments-ai/template/src/components/client/login-form.tsx +119 -163
  31. package/dist/templates/web/ui-auth-payments-ai/template/src/components/client/signup-form.tsx +158 -201
  32. package/dist/templates/web/ui-auth-payments-audio/template/src/app/dashboard/page.tsx +10 -51
  33. package/dist/templates/web/ui-auth-payments-audio/template/src/app/page.tsx +402 -403
  34. package/dist/templates/web/ui-auth-payments-audio/template/src/components/client/login-form.tsx +143 -143
  35. package/dist/templates/web/ui-auth-payments-audio/template/src/components/client/signup-form.tsx +184 -184
  36. package/dist/templates/web/ui-auth-payments-video/template/src/app/login/page.tsx +1 -1
  37. package/dist/templates/web/ui-auth-payments-video/template/src/app/page.tsx +3 -7
  38. package/dist/templates/web/ui-auth-payments-video/template/src/app/signup/page.tsx +1 -1
  39. package/package.json +1 -1
  40. package/src/templates/shared/quality/web/src/__tests__/accessibility.test.tsx +3 -3
  41. package/src/templates/web/ai-platform/template/src/app/page.tsx +207 -207
  42. package/src/templates/web/base/template/src/app/dashboard/page.tsx +6 -43
  43. package/src/templates/web/base/template/src/app/page.tsx +2 -2
  44. package/src/templates/web/ui-auth/template/src/app/dev-setup/page.tsx +800 -800
  45. package/src/templates/web/ui-auth/template/src/app/login/page.tsx +109 -109
  46. package/src/templates/web/ui-auth/template/src/app/page.tsx +3 -3
  47. package/src/templates/web/ui-auth/template/src/app/signup/page.tsx +128 -128
  48. package/src/templates/web/ui-auth-ai/template/src/app/globals.css +35 -40
  49. package/src/templates/web/ui-auth-ai/template/src/app/layout.tsx +1 -0
  50. package/src/templates/web/ui-auth-payments/template/src/app/checkout/page.tsx +3 -3
  51. package/src/templates/web/ui-auth-payments/template/src/app/dashboard/page.tsx +10 -49
  52. package/src/templates/web/ui-auth-payments/template/src/app/dev-setup/page.tsx +800 -800
  53. package/src/templates/web/ui-auth-payments/template/src/app/login/page.tsx +109 -109
  54. package/src/templates/web/ui-auth-payments/template/src/app/page.tsx +350 -350
  55. package/src/templates/web/ui-auth-payments/template/src/app/setup/page.tsx +506 -506
  56. package/src/templates/web/ui-auth-payments/template/src/app/signup/page.tsx +128 -128
  57. package/src/templates/web/ui-auth-payments/template/src/components/client/login-form.tsx +143 -143
  58. package/src/templates/web/ui-auth-payments/template/src/components/client/signup-form.tsx +184 -184
  59. package/src/templates/web/ui-auth-payments-ai/template/src/app/billing/page.tsx +143 -233
  60. package/src/templates/web/ui-auth-payments-ai/template/src/app/dashboard/page.tsx +10 -50
  61. package/src/templates/web/ui-auth-payments-ai/template/src/app/dev-setup/page.tsx +800 -800
  62. package/src/templates/web/ui-auth-payments-ai/template/src/app/onboarding/page.tsx +325 -364
  63. package/src/templates/web/ui-auth-payments-ai/template/src/app/page.tsx +1 -1
  64. package/src/templates/web/ui-auth-payments-ai/template/src/app/settings/page.tsx +389 -532
  65. package/src/templates/web/ui-auth-payments-ai/template/src/app/setup/page.tsx +644 -644
  66. package/src/templates/web/ui-auth-payments-ai/template/src/components/client/login-form.tsx +119 -163
  67. package/src/templates/web/ui-auth-payments-ai/template/src/components/client/signup-form.tsx +158 -201
  68. package/src/templates/web/ui-auth-payments-audio/template/src/app/dashboard/page.tsx +10 -51
  69. package/src/templates/web/ui-auth-payments-audio/template/src/app/page.tsx +402 -403
  70. package/src/templates/web/ui-auth-payments-audio/template/src/components/client/login-form.tsx +143 -143
  71. package/src/templates/web/ui-auth-payments-audio/template/src/components/client/signup-form.tsx +184 -184
  72. package/src/templates/web/ui-auth-payments-video/template/src/app/login/page.tsx +1 -1
  73. package/src/templates/web/ui-auth-payments-video/template/src/app/page.tsx +3 -7
  74. package/src/templates/web/ui-auth-payments-video/template/src/app/signup/page.tsx +1 -1
@@ -46,7 +46,7 @@ export default function Home() {
46
46
  badge: {
47
47
  text: "🎥 Professional Video Platform",
48
48
  variant: "secondary" as const,
49
- icon: CheckCircle
49
+ icon: <CheckCircle className="w-4 h-4" />
50
50
  },
51
51
  title: {
52
52
  text: `Welcome to ${projectName}`,
@@ -73,11 +73,7 @@ export default function Home() {
73
73
 
74
74
  return (
75
75
  <PageTransition type="slide" direction="up" duration={300}>
76
- <OfflineWrapper
77
- cacheStrategy="cache-first"
78
- showOfflineIndicator={true}
79
- backgroundSync={true}
80
- >
76
+ <OfflineWrapper>
81
77
  <PullToRefresh
82
78
  onRefresh={handleRefresh}
83
79
  threshold={80}
@@ -322,7 +318,7 @@ export default function Home() {
322
318
  </NetworkAwareContent>
323
319
 
324
320
  {/* Component Showcase */}
325
- <ResponsiveGrid columns={gridConfig.columns_1_sm2_md4} gap="lg" className="mb-16">
321
+ <ResponsiveGrid columns={gridConfig.columns_1_sm2_md4} gap={6} className="mb-16">
326
322
  <Card className="text-center p-6">
327
323
  <div className="mx-auto w-12 h-12 bg-blue-100 dark:bg-blue-900 rounded-lg flex items-center justify-center mb-4">
328
324
  <Zap className="h-6 w-6 text-blue-600 dark:text-blue-400" />
@@ -37,7 +37,7 @@ export default function SignupPage() {
37
37
 
38
38
  const handleGoogleSignup = async () => {
39
39
  try {
40
- await signInWithOAuth('google', window.location.origin);
40
+ await signInWithOAuth('google');
41
41
  } catch (err) {
42
42
  console.error('Google signup error:', err);
43
43
  }