@digilogiclabs/create-saas-app 1.12.0 → 1.14.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.
- package/README.md +104 -36
- package/dist/.tsbuildinfo +1 -1
- package/dist/cli/commands/add.d.ts +6 -0
- package/dist/cli/commands/add.d.ts.map +1 -0
- package/dist/cli/commands/add.js +39 -0
- package/dist/cli/commands/add.js.map +1 -0
- package/dist/cli/commands/index.d.ts +4 -0
- package/dist/cli/commands/index.d.ts.map +1 -0
- package/dist/cli/commands/index.js +20 -0
- package/dist/cli/commands/index.js.map +1 -0
- package/dist/cli/commands/update.d.ts +6 -0
- package/dist/cli/commands/update.d.ts.map +1 -0
- package/dist/cli/commands/update.js +68 -0
- package/dist/cli/commands/update.js.map +1 -0
- package/dist/cli/index.d.ts +4 -0
- package/dist/cli/index.d.ts.map +1 -0
- package/dist/cli/index.js +61 -0
- package/dist/cli/index.js.map +1 -0
- package/dist/cli/prompts/index.d.ts +2 -0
- package/dist/cli/prompts/index.d.ts.map +1 -0
- package/dist/cli/prompts/index.js +18 -0
- package/dist/cli/prompts/index.js.map +1 -0
- package/dist/cli/prompts/project-setup.d.ts +5 -0
- package/dist/cli/prompts/project-setup.d.ts.map +1 -0
- package/dist/cli/prompts/project-setup.js +251 -0
- package/dist/cli/prompts/project-setup.js.map +1 -0
- package/dist/cli/utils/git.d.ts +9 -0
- package/dist/cli/utils/git.d.ts.map +1 -0
- package/dist/cli/utils/git.js +77 -0
- package/dist/cli/utils/git.js.map +1 -0
- package/dist/cli/utils/index.d.ts +5 -0
- package/dist/cli/utils/index.d.ts.map +1 -0
- package/dist/cli/utils/index.js +21 -0
- package/dist/cli/utils/index.js.map +1 -0
- package/dist/cli/utils/logger.d.ts +16 -0
- package/dist/cli/utils/logger.d.ts.map +1 -0
- package/dist/cli/utils/logger.js +55 -0
- package/dist/cli/utils/logger.js.map +1 -0
- package/dist/cli/utils/package-manager.d.ts +8 -0
- package/dist/cli/utils/package-manager.d.ts.map +1 -0
- package/dist/cli/utils/package-manager.js +92 -0
- package/dist/cli/utils/package-manager.js.map +1 -0
- package/dist/cli/utils/spinner.d.ts +7 -0
- package/dist/cli/utils/spinner.d.ts.map +1 -0
- package/dist/cli/utils/spinner.js +48 -0
- package/dist/cli/utils/spinner.js.map +1 -0
- package/dist/cli/validators/dependencies.d.ts +15 -0
- package/dist/cli/validators/dependencies.d.ts.map +1 -0
- package/dist/cli/validators/dependencies.js +108 -0
- package/dist/cli/validators/dependencies.js.map +1 -0
- package/dist/cli/validators/index.d.ts +3 -0
- package/dist/cli/validators/index.d.ts.map +1 -0
- package/dist/cli/validators/index.js +19 -0
- package/dist/cli/validators/index.js.map +1 -0
- package/dist/cli/validators/project-name.d.ts +5 -0
- package/dist/cli/validators/project-name.d.ts.map +1 -0
- package/dist/cli/validators/project-name.js +151 -0
- package/dist/cli/validators/project-name.js.map +1 -0
- package/dist/generators/file-processor.d.ts +28 -0
- package/dist/generators/file-processor.d.ts.map +1 -0
- package/dist/generators/file-processor.js +224 -0
- package/dist/generators/file-processor.js.map +1 -0
- package/dist/generators/index.d.ts +4 -0
- package/dist/generators/index.d.ts.map +1 -0
- package/dist/generators/index.js +20 -0
- package/dist/generators/index.js.map +1 -0
- package/dist/generators/package-installer.d.ts +29 -0
- package/dist/generators/package-installer.d.ts.map +1 -0
- package/dist/generators/package-installer.js +167 -0
- package/dist/generators/package-installer.js.map +1 -0
- package/dist/templates/web/ui-auth/template/package.json +2 -2
- package/dist/templates/web/ui-auth/template/src/app/globals.css +53 -0
- package/dist/templates/web/ui-auth/template/src/app/page.tsx +14 -1
- package/dist/templates/web/ui-auth-payments/template/package.json +3 -3
- package/dist/templates/web/ui-auth-payments/template/src/app/globals.css +40 -0
- package/dist/templates/web/ui-auth-payments/template/src/app/page.tsx +14 -1
- package/dist/templates/web/ui-auth-payments-ai/template/.env.example +7 -0
- package/dist/templates/web/ui-auth-payments-ai/template/package.json +6 -6
- package/dist/templates/web/ui-auth-payments-ai/template/src/app/globals.css +53 -0
- package/dist/templates/web/ui-auth-payments-ai/template/src/app/page.tsx +75 -61
- package/dist/templates/web/ui-auth-payments-ai/template/src/app/setup/page.tsx +19 -14
- package/dist/templates/web/ui-auth-payments-ai/template/src/components/shared/header.tsx +18 -11
- package/dist/templates/web/ui-auth-payments-ai/template/src/lib/supabase/server.ts +72 -0
- package/dist/templates/web/ui-auth-payments-audio/template/package.json +3 -3
- package/dist/templates/web/ui-auth-payments-audio/template/src/app/globals.css +53 -0
- package/dist/templates/web/ui-auth-payments-audio/template/src/app/page.tsx +23 -13
- package/dist/templates/web/ui-auth-payments-audio/template/src/components/shared/header.tsx +18 -11
- package/dist/templates/web/ui-auth-payments-video/template/package.json +3 -3
- package/dist/templates/web/ui-auth-payments-video/template/src/app/globals.css +40 -0
- package/dist/templates/web/ui-auth-payments-video/template/src/app/page.tsx +14 -1
- package/package.json +1 -1
- package/src/templates/web/ui-auth/template/package.json +2 -2
- package/src/templates/web/ui-auth/template/src/app/globals.css +53 -0
- package/src/templates/web/ui-auth/template/src/app/page.tsx +14 -1
- package/src/templates/web/ui-auth-payments/template/package.json +3 -3
- package/src/templates/web/ui-auth-payments/template/src/app/globals.css +40 -0
- package/src/templates/web/ui-auth-payments/template/src/app/page.tsx +14 -1
- package/src/templates/web/ui-auth-payments-ai/template/.env.example +7 -0
- package/src/templates/web/ui-auth-payments-ai/template/package.json +6 -6
- package/src/templates/web/ui-auth-payments-ai/template/src/app/globals.css +53 -0
- package/src/templates/web/ui-auth-payments-ai/template/src/app/page.tsx +75 -61
- package/src/templates/web/ui-auth-payments-ai/template/src/app/setup/page.tsx +19 -14
- package/src/templates/web/ui-auth-payments-ai/template/src/components/shared/header.tsx +18 -11
- package/src/templates/web/ui-auth-payments-ai/template/src/lib/supabase/server.ts +72 -0
- package/src/templates/web/ui-auth-payments-audio/template/package.json +3 -3
- package/src/templates/web/ui-auth-payments-audio/template/src/app/globals.css +53 -0
- package/src/templates/web/ui-auth-payments-audio/template/src/app/page.tsx +23 -13
- package/src/templates/web/ui-auth-payments-audio/template/src/components/shared/header.tsx +18 -11
- package/src/templates/web/ui-auth-payments-video/template/package.json +3 -3
- package/src/templates/web/ui-auth-payments-video/template/src/app/globals.css +40 -0
- package/src/templates/web/ui-auth-payments-video/template/src/app/page.tsx +14 -1
|
@@ -124,26 +124,33 @@ export function Header() {
|
|
|
124
124
|
</div>
|
|
125
125
|
)}
|
|
126
126
|
|
|
127
|
-
{/* Responsive Header */}
|
|
128
|
-
<header className="bg-
|
|
129
|
-
<div className="
|
|
127
|
+
{/* Responsive Header with theme-aware gradient */}
|
|
128
|
+
<header className="bg-background/90 backdrop-blur-md shadow-lg border-b border-border/20 transition-all duration-300 animate-slide-down">
|
|
129
|
+
<div className="absolute inset-0 bg-gradient-to-r from-primary/10 via-transparent to-accent/10"></div>
|
|
130
|
+
<div className="container mx-auto px-4 relative">
|
|
130
131
|
<div className="flex justify-between items-center h-16">
|
|
131
|
-
{/* Logo */}
|
|
132
|
-
<Link href="/" className="text-2xl font-bold text-
|
|
133
|
-
<Music className="w-6 h-6" />
|
|
134
|
-
|
|
132
|
+
{/* Logo with animation */}
|
|
133
|
+
<Link href="/" className="text-2xl font-bold text-foreground flex items-center gap-2 transition-all duration-300 hover:scale-105">
|
|
134
|
+
<Music className="w-6 h-6 transition-transform duration-300 hover:rotate-12 text-primary" />
|
|
135
|
+
<span className="bg-gradient-to-r from-primary to-accent bg-clip-text text-transparent transition-all duration-300">
|
|
136
|
+
{projectName}
|
|
137
|
+
</span>
|
|
135
138
|
</Link>
|
|
136
139
|
|
|
137
140
|
{/* Desktop Navigation */}
|
|
138
141
|
<nav className="hidden md:flex items-center gap-6">
|
|
139
|
-
{visibleNavItems.map((item) => (
|
|
142
|
+
{visibleNavItems.map((item, index) => (
|
|
140
143
|
<Link
|
|
141
144
|
key={item.href}
|
|
142
145
|
href={item.href}
|
|
143
|
-
className="flex items-center gap-2 text-
|
|
146
|
+
className="group flex items-center gap-2 text-muted-foreground hover:text-primary transition-all duration-300 relative px-3 py-2 rounded-lg hover:bg-gradient-to-r hover:from-primary/10 hover:to-accent/10 animate-fade-in-up"
|
|
147
|
+
style={{ animationDelay: `${index * 100}ms` }}
|
|
144
148
|
>
|
|
145
|
-
<item.icon className="w-4 h-4" />
|
|
146
|
-
|
|
149
|
+
<item.icon className="w-4 h-4 transition-transform duration-300 group-hover:scale-110 group-hover:rotate-3" />
|
|
150
|
+
<span className="relative">
|
|
151
|
+
{item.label}
|
|
152
|
+
<span className="absolute -bottom-1 left-0 h-0.5 w-0 bg-gradient-to-r from-primary to-accent transition-all duration-300 group-hover:w-full"></span>
|
|
153
|
+
</span>
|
|
147
154
|
</Link>
|
|
148
155
|
))}
|
|
149
156
|
|
|
@@ -17,9 +17,9 @@
|
|
|
17
17
|
"next": "^15.0.0",
|
|
18
18
|
"react": "^19.0.0",
|
|
19
19
|
"react-dom": "^19.0.0",
|
|
20
|
-
"@digilogiclabs/saas-factory-ui": "^0.18.
|
|
21
|
-
"@digilogiclabs/saas-factory-auth": "^1.0.
|
|
22
|
-
"@digilogiclabs/saas-factory-payments": "^1.
|
|
20
|
+
"@digilogiclabs/saas-factory-ui": "^0.18.4",
|
|
21
|
+
"@digilogiclabs/saas-factory-auth": "^1.0.1",
|
|
22
|
+
"@digilogiclabs/saas-factory-payments": "^1.1.0",
|
|
23
23
|
"stripe": "^14.0.0",
|
|
24
24
|
"tailwindcss": "^3.3.0",
|
|
25
25
|
"autoprefixer": "^10.4.16",
|
|
@@ -186,3 +186,43 @@
|
|
|
186
186
|
.progressive-image.loaded {
|
|
187
187
|
filter: blur(0);
|
|
188
188
|
}
|
|
189
|
+
|
|
190
|
+
/* Additional custom animations for enhanced visual effects */
|
|
191
|
+
@keyframes slide-down {
|
|
192
|
+
from {
|
|
193
|
+
opacity: 0;
|
|
194
|
+
transform: translateY(-10px);
|
|
195
|
+
}
|
|
196
|
+
to {
|
|
197
|
+
opacity: 1;
|
|
198
|
+
transform: translateY(0);
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
@keyframes fade-in-up {
|
|
203
|
+
from {
|
|
204
|
+
opacity: 0;
|
|
205
|
+
transform: translateY(10px);
|
|
206
|
+
}
|
|
207
|
+
to {
|
|
208
|
+
opacity: 1;
|
|
209
|
+
transform: translateY(0);
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.animate-slide-down {
|
|
214
|
+
animation: slide-down 0.6s ease-out;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.animate-fade-in-up {
|
|
218
|
+
animation: fade-in-up 0.6s ease-out;
|
|
219
|
+
animation-fill-mode: both;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
.animation-delay-2000 {
|
|
223
|
+
animation-delay: 2s;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.animation-delay-4000 {
|
|
227
|
+
animation-delay: 4s;
|
|
228
|
+
}
|
|
@@ -85,7 +85,20 @@ export default function Home() {
|
|
|
85
85
|
hapticOnTrigger={true}
|
|
86
86
|
networkAware={true}
|
|
87
87
|
>
|
|
88
|
-
<main className="min-h-screen
|
|
88
|
+
<main className="min-h-screen relative overflow-hidden bg-background">
|
|
89
|
+
{/* Theme-aware gradient background for video streaming */}
|
|
90
|
+
<div className="absolute inset-0 bg-gradient-to-br from-primary/15 via-background to-secondary/15 dark:from-primary/25 dark:via-background dark:to-secondary/25" />
|
|
91
|
+
<div className="absolute inset-0 bg-gradient-to-tl from-accent/10 via-transparent to-secondary/10 dark:from-accent/15 dark:via-transparent dark:to-secondary/15" />
|
|
92
|
+
<div className="absolute inset-0 bg-[radial-gradient(ellipse_at_center_top,_var(--tw-gradient-stops))] from-primary/20 via-transparent to-transparent dark:from-primary/30 dark:via-transparent dark:to-transparent" />
|
|
93
|
+
{/* Animated video-themed particles */}
|
|
94
|
+
<div className="absolute inset-0 opacity-20 dark:opacity-10">
|
|
95
|
+
<div className="absolute top-1/4 right-1/4 w-72 h-72 bg-primary/60 rounded-full mix-blend-multiply filter blur-3xl animate-pulse dark:bg-primary/80"></div>
|
|
96
|
+
<div className="absolute bottom-1/4 left-1/3 w-96 h-96 bg-secondary/60 rounded-full mix-blend-multiply filter blur-3xl animate-pulse animation-delay-2000 dark:bg-secondary/80"></div>
|
|
97
|
+
<div className="absolute top-1/2 left-1/5 w-64 h-64 bg-accent/60 rounded-full mix-blend-multiply filter blur-3xl animate-pulse animation-delay-4000 dark:bg-accent/80"></div>
|
|
98
|
+
</div>
|
|
99
|
+
{/* Video player overlay effect */}
|
|
100
|
+
<div className="absolute inset-0 bg-gradient-to-b from-transparent via-background/3 to-background/10" />
|
|
101
|
+
<div className="relative z-10">
|
|
89
102
|
<MobileContainer className="py-16">
|
|
90
103
|
{/* Auth Status Bar */}
|
|
91
104
|
<div className="flex justify-end mb-8">
|