@digilogiclabs/create-saas-app 1.18.6 → 1.19.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/CHANGELOG.md +29 -0
- package/README.md +122 -37
- package/dist/.tsbuildinfo +1 -1
- package/dist/generators/template-generator.d.ts +2 -0
- package/dist/generators/template-generator.d.ts.map +1 -1
- package/dist/generators/template-generator.js +79 -4
- package/dist/generators/template-generator.js.map +1 -1
- package/dist/templates/mobile/base/template/package.json +3 -3
- package/dist/templates/mobile/ui-auth-payments/template/package.json +3 -3
- package/dist/templates/mobile/ui-auth-payments-ai/template/package.json +5 -5
- package/dist/templates/mobile/ui-auth-payments-ai-rag/template/package.json +5 -5
- package/dist/templates/web/base/template/package.json +3 -3
- package/dist/templates/web/ui-auth/template/package.json +2 -2
- package/dist/templates/web/ui-auth-ai/template/package.json +4 -4
- package/dist/templates/web/ui-auth-payments/template/package.json +3 -3
- package/dist/templates/web/ui-auth-payments/template/src/app/page.tsx +1 -0
- package/dist/templates/web/ui-auth-payments-ai/template/package.json +5 -5
- package/dist/templates/web/ui-auth-payments-ai-rag/template/package.json +5 -5
- package/dist/templates/web/ui-auth-payments-audio/template/package.json +3 -3
- package/dist/templates/web/ui-auth-payments-audio/template/src/components/shared/header.tsx +1 -2
- package/dist/templates/web/ui-auth-payments-video/template/package.json +3 -3
- package/dist/templates/web/ui-only/template/package.json +1 -1
- package/dist/templates/web/ui-package-test/template/package.json +1 -1
- package/package.json +1 -1
- package/src/templates/mobile/base/template/package.json +3 -3
- package/src/templates/mobile/ui-auth-payments/template/package.json +3 -3
- package/src/templates/mobile/ui-auth-payments-ai/template/package.json +5 -5
- package/src/templates/mobile/ui-auth-payments-ai-rag/template/package.json +5 -5
- package/src/templates/web/base/template/package.json +3 -3
- package/src/templates/web/ui-auth/template/package.json +2 -2
- package/src/templates/web/ui-auth-ai/template/package.json +4 -4
- package/src/templates/web/ui-auth-payments/template/package.json +3 -3
- package/src/templates/web/ui-auth-payments/template/src/app/page.tsx +1 -0
- package/src/templates/web/ui-auth-payments-ai/template/package.json +5 -5
- package/src/templates/web/ui-auth-payments-ai-rag/template/package.json +5 -5
- package/src/templates/web/ui-auth-payments-audio/template/package.json +3 -3
- package/src/templates/web/ui-auth-payments-audio/template/src/components/shared/header.tsx +1 -2
- package/src/templates/web/ui-auth-payments-video/template/package.json +3 -3
- package/src/templates/web/ui-only/template/package.json +1 -1
- package/src/templates/web/ui-package-test/template/package.json +1 -1
|
@@ -4,7 +4,7 @@ import React, { useState } from 'react';
|
|
|
4
4
|
import Link from 'next/link';
|
|
5
5
|
import { LogOut, CreditCard, User, Settings, Home, Music, Headphones, Menu, X, Info } from 'lucide-react';
|
|
6
6
|
import { useAuth } from '@digilogiclabs/saas-factory-auth';
|
|
7
|
-
import {
|
|
7
|
+
import {
|
|
8
8
|
ResponsiveHeader,
|
|
9
9
|
MobileNavigation,
|
|
10
10
|
HamburgerIcon,
|
|
@@ -144,7 +144,6 @@ export function Header() {
|
|
|
144
144
|
key={item.href}
|
|
145
145
|
href={item.href}
|
|
146
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-secondary/10 animate-fade-in-up"
|
|
147
|
-
style={{ animationDelay: (index * 100) + 'ms' }}
|
|
148
147
|
>
|
|
149
148
|
<item.icon className="w-4 h-4 transition-transform duration-300 group-hover:scale-110 group-hover:rotate-3" />
|
|
150
149
|
<span className="relative">
|
|
@@ -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.
|
|
21
|
-
"@digilogiclabs/saas-factory-auth": "^1.0.
|
|
22
|
-
"@digilogiclabs/saas-factory-payments": "^1.
|
|
20
|
+
"@digilogiclabs/saas-factory-ui": "^0.26.0",
|
|
21
|
+
"@digilogiclabs/saas-factory-auth": "^1.0.2",
|
|
22
|
+
"@digilogiclabs/saas-factory-payments": "^1.2.0",
|
|
23
23
|
"stripe": "^14.0.0",
|
|
24
24
|
"tailwindcss": "^3.3.0",
|
|
25
25
|
"autoprefixer": "^10.4.16",
|