@digilogiclabs/create-saas-app 2.8.0 → 2.8.1

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 (28) hide show
  1. package/dist/.tsbuildinfo +1 -1
  2. package/dist/templates/web/base/template/package.json +1 -3
  3. package/dist/templates/web/base/template/src/app/auth/callback/route.ts +32 -18
  4. package/dist/templates/web/base/template/src/app/globals.css +158 -157
  5. package/dist/templates/web/ui-auth/template/src/app/globals.css +96 -95
  6. package/dist/templates/web/ui-auth/template/src/app/page.tsx +1 -0
  7. package/dist/templates/web/ui-auth-ai/template/src/app/globals.css +3 -3
  8. package/dist/templates/web/ui-auth-payments/template/src/app/globals.css +212 -211
  9. package/dist/templates/web/ui-auth-payments-ai/template/src/app/globals.css +97 -96
  10. package/dist/templates/web/ui-auth-payments-ai-rag/template/package.json +1 -2
  11. package/dist/templates/web/ui-auth-payments-audio/template/src/app/globals.css +97 -96
  12. package/dist/templates/web/ui-auth-payments-video/template/src/app/globals.css +229 -228
  13. package/dist/templates/web/ui-auth-payments-video/template/src/app/page.tsx +1 -0
  14. package/dist/templates/web/ui-only/template/src/app/globals.css +43 -42
  15. package/package.json +1 -1
  16. package/src/templates/web/base/template/package.json +1 -3
  17. package/src/templates/web/base/template/src/app/auth/callback/route.ts +32 -18
  18. package/src/templates/web/base/template/src/app/globals.css +158 -157
  19. package/src/templates/web/ui-auth/template/src/app/globals.css +96 -95
  20. package/src/templates/web/ui-auth/template/src/app/page.tsx +1 -0
  21. package/src/templates/web/ui-auth-ai/template/src/app/globals.css +3 -3
  22. package/src/templates/web/ui-auth-payments/template/src/app/globals.css +212 -211
  23. package/src/templates/web/ui-auth-payments-ai/template/src/app/globals.css +97 -96
  24. package/src/templates/web/ui-auth-payments-ai-rag/template/package.json +1 -2
  25. package/src/templates/web/ui-auth-payments-audio/template/src/app/globals.css +97 -96
  26. package/src/templates/web/ui-auth-payments-video/template/src/app/globals.css +229 -228
  27. package/src/templates/web/ui-auth-payments-video/template/src/app/page.tsx +1 -0
  28. package/src/templates/web/ui-only/template/src/app/globals.css +43 -42
@@ -1,211 +1,212 @@
1
- @tailwind base;
2
- @tailwind components;
3
- @tailwind utilities;
4
-
5
- /* Import SaaS Factory UI styles */
6
- @import '@digilogiclabs/saas-factory-ui/dist/index.css';
7
-
8
- @layer base {
9
- :root {
10
- --background: 0 0% 100%;
11
- --foreground: 222.2 84% 4.9%;
12
- --card: 0 0% 100%;
13
- --card-foreground: 222.2 84% 4.9%;
14
- --primary: 221.2 83.2% 53.3%;
15
- --primary-foreground: 210 40% 98%;
16
- --secondary: 210 40% 96%;
17
- --secondary-foreground: 222.2 84% 4.9%;
18
- --border: 214.3 31.8% 91.4%;
19
- --radius: 0.5rem;
20
- }
21
-
22
- .dark {
23
- --background: 222.2 84% 4.9%;
24
- --foreground: 210 40% 98%;
25
- --card: 222.2 84% 4.9%;
26
- --card-foreground: 210 40% 98%;
27
- --primary: 217.2 91.2% 59.8%;
28
- --primary-foreground: 222.2 84% 4.9%;
29
- --secondary: 217.2 32.6% 17.5%;
30
- --secondary-foreground: 210 40% 98%;
31
- --border: 217.2 32.6% 17.5%;
32
- }
33
- }
34
-
35
- @layer base {
36
- * {
37
- @apply border-border;
38
- }
39
- body {
40
- @apply bg-background text-foreground;
41
- }
42
- }
43
-
44
- /* Mobile-first optimizations */
45
- @media (max-width: 768px) {
46
- .mobile-optimized {
47
- touch-action: manipulation;
48
- -webkit-tap-highlight-color: transparent;
49
- }
50
-
51
- /* Better touch targets */
52
- button,
53
- a,
54
- input,
55
- select,
56
- textarea {
57
- min-height: 44px;
58
- min-width: 44px;
59
- }
60
-
61
- /* Smooth scrolling for mobile */
62
- html {
63
- scroll-behavior: smooth;
64
- -webkit-overflow-scrolling: touch;
65
- }
66
- }
67
-
68
- /* Animated moving banner */
69
- @keyframes marquee {
70
- 0% {
71
- transform: translate3d(100%, 0, 0);
72
- }
73
- 100% {
74
- transform: translate3d(-100%, 0, 0);
75
- }
76
- }
77
-
78
- .animate-marquee {
79
- animation: marquee 15s linear infinite;
80
- }
81
-
82
- /* Network-aware styles */
83
- @media (prefers-reduced-data: reduce) {
84
- .high-bandwidth-content {
85
- display: none;
86
- }
87
- }
88
-
89
- /* Reduced motion preferences */
90
- @media (prefers-reduced-motion: reduce) {
91
- *,
92
- *::before,
93
- *::after {
94
- animation-duration: 0.01ms !important;
95
- animation-iteration-count: 1 !important;
96
- transition-duration: 0.01ms !important;
97
- }
98
-
99
- .animate-marquee {
100
- animation: none;
101
- }
102
- }
103
-
104
- /* Hamburger menu animations */
105
- .hamburger-line {
106
- transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
107
- transform-origin: center;
108
- }
109
-
110
- .hamburger-open .hamburger-line:nth-child(1) {
111
- transform: rotate(45deg) translate(6px, 6px);
112
- }
113
-
114
- .hamburger-open .hamburger-line:nth-child(2) {
115
- opacity: 0;
116
- }
117
-
118
- .hamburger-open .hamburger-line:nth-child(3) {
119
- transform: rotate(-45deg) translate(6px, -6px);
120
- }
121
-
122
- /* Custom animations for mobile interactions */
123
- @keyframes haptic-feedback {
124
- 0% { transform: scale(1); }
125
- 50% { transform: scale(0.95); }
126
- 100% { transform: scale(1); }
127
- }
128
-
129
- .haptic-feedback {
130
- animation: haptic-feedback 0.1s ease-in-out;
131
- }
132
-
133
- /* Offline indicator styles */
134
- .offline-indicator {
135
- position: fixed;
136
- top: 0;
137
- left: 0;
138
- right: 0;
139
- background: #f59e0b;
140
- color: white;
141
- text-align: center;
142
- padding: 8px;
143
- font-size: 14px;
144
- z-index: 9999;
145
- }
146
-
147
- /* Loading states */
148
- .loading-skeleton {
149
- background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
150
- background-size: 200% 100%;
151
- animation: loading 1.5s infinite;
152
- }
153
-
154
- @keyframes loading {
155
- 0% {
156
- background-position: 200% 0;
157
- }
158
- 100% {
159
- background-position: -200% 0;
160
- }
161
- }
162
-
163
- /* Progressive image loading */
164
- .progressive-image {
165
- filter: blur(5px);
166
- transition: filter 0.3s;
167
- }
168
-
169
- .progressive-image.loaded {
170
- filter: blur(0);
171
- }
172
-
173
- /* Additional custom animations for enhanced visual effects */
174
- @keyframes slide-down {
175
- from {
176
- opacity: 0;
177
- transform: translateY(-10px);
178
- }
179
- to {
180
- opacity: 1;
181
- transform: translateY(0);
182
- }
183
- }
184
-
185
- @keyframes fade-in-up {
186
- from {
187
- opacity: 0;
188
- transform: translateY(10px);
189
- }
190
- to {
191
- opacity: 1;
192
- transform: translateY(0);
193
- }
194
- }
195
-
196
- .animate-slide-down {
197
- animation: slide-down 0.6s ease-out;
198
- }
199
-
200
- .animate-fade-in-up {
201
- animation: fade-in-up 0.6s ease-out;
202
- animation-fill-mode: both;
203
- }
204
-
205
- .animation-delay-2000 {
206
- animation-delay: 2s;
207
- }
208
-
209
- .animation-delay-4000 {
210
- animation-delay: 4s;
211
- }
1
+ /* Import SaaS Factory UI styles */
2
+ @import '@digilogiclabs/saas-factory-ui/dist/index.css';
3
+
4
+ @tailwind base;
5
+ @tailwind components;
6
+ @tailwind utilities;
7
+
8
+
9
+ @layer base {
10
+ :root {
11
+ --background: 0 0% 100%;
12
+ --foreground: 222.2 84% 4.9%;
13
+ --card: 0 0% 100%;
14
+ --card-foreground: 222.2 84% 4.9%;
15
+ --primary: 221.2 83.2% 53.3%;
16
+ --primary-foreground: 210 40% 98%;
17
+ --secondary: 210 40% 96%;
18
+ --secondary-foreground: 222.2 84% 4.9%;
19
+ --border: 214.3 31.8% 91.4%;
20
+ --radius: 0.5rem;
21
+ }
22
+
23
+ .dark {
24
+ --background: 222.2 84% 4.9%;
25
+ --foreground: 210 40% 98%;
26
+ --card: 222.2 84% 4.9%;
27
+ --card-foreground: 210 40% 98%;
28
+ --primary: 217.2 91.2% 59.8%;
29
+ --primary-foreground: 222.2 84% 4.9%;
30
+ --secondary: 217.2 32.6% 17.5%;
31
+ --secondary-foreground: 210 40% 98%;
32
+ --border: 217.2 32.6% 17.5%;
33
+ }
34
+ }
35
+
36
+ @layer base {
37
+ * {
38
+ @apply border-border;
39
+ }
40
+ body {
41
+ @apply bg-background text-foreground;
42
+ }
43
+ }
44
+
45
+ /* Mobile-first optimizations */
46
+ @media (max-width: 768px) {
47
+ .mobile-optimized {
48
+ touch-action: manipulation;
49
+ -webkit-tap-highlight-color: transparent;
50
+ }
51
+
52
+ /* Better touch targets */
53
+ button,
54
+ a,
55
+ input,
56
+ select,
57
+ textarea {
58
+ min-height: 44px;
59
+ min-width: 44px;
60
+ }
61
+
62
+ /* Smooth scrolling for mobile */
63
+ html {
64
+ scroll-behavior: smooth;
65
+ -webkit-overflow-scrolling: touch;
66
+ }
67
+ }
68
+
69
+ /* Animated moving banner */
70
+ @keyframes marquee {
71
+ 0% {
72
+ transform: translate3d(100%, 0, 0);
73
+ }
74
+ 100% {
75
+ transform: translate3d(-100%, 0, 0);
76
+ }
77
+ }
78
+
79
+ .animate-marquee {
80
+ animation: marquee 15s linear infinite;
81
+ }
82
+
83
+ /* Network-aware styles */
84
+ @media (prefers-reduced-data: reduce) {
85
+ .high-bandwidth-content {
86
+ display: none;
87
+ }
88
+ }
89
+
90
+ /* Reduced motion preferences */
91
+ @media (prefers-reduced-motion: reduce) {
92
+ *,
93
+ *::before,
94
+ *::after {
95
+ animation-duration: 0.01ms !important;
96
+ animation-iteration-count: 1 !important;
97
+ transition-duration: 0.01ms !important;
98
+ }
99
+
100
+ .animate-marquee {
101
+ animation: none;
102
+ }
103
+ }
104
+
105
+ /* Hamburger menu animations */
106
+ .hamburger-line {
107
+ transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
108
+ transform-origin: center;
109
+ }
110
+
111
+ .hamburger-open .hamburger-line:nth-child(1) {
112
+ transform: rotate(45deg) translate(6px, 6px);
113
+ }
114
+
115
+ .hamburger-open .hamburger-line:nth-child(2) {
116
+ opacity: 0;
117
+ }
118
+
119
+ .hamburger-open .hamburger-line:nth-child(3) {
120
+ transform: rotate(-45deg) translate(6px, -6px);
121
+ }
122
+
123
+ /* Custom animations for mobile interactions */
124
+ @keyframes haptic-feedback {
125
+ 0% { transform: scale(1); }
126
+ 50% { transform: scale(0.95); }
127
+ 100% { transform: scale(1); }
128
+ }
129
+
130
+ .haptic-feedback {
131
+ animation: haptic-feedback 0.1s ease-in-out;
132
+ }
133
+
134
+ /* Offline indicator styles */
135
+ .offline-indicator {
136
+ position: fixed;
137
+ top: 0;
138
+ left: 0;
139
+ right: 0;
140
+ background: #f59e0b;
141
+ color: white;
142
+ text-align: center;
143
+ padding: 8px;
144
+ font-size: 14px;
145
+ z-index: 9999;
146
+ }
147
+
148
+ /* Loading states */
149
+ .loading-skeleton {
150
+ background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
151
+ background-size: 200% 100%;
152
+ animation: loading 1.5s infinite;
153
+ }
154
+
155
+ @keyframes loading {
156
+ 0% {
157
+ background-position: 200% 0;
158
+ }
159
+ 100% {
160
+ background-position: -200% 0;
161
+ }
162
+ }
163
+
164
+ /* Progressive image loading */
165
+ .progressive-image {
166
+ filter: blur(5px);
167
+ transition: filter 0.3s;
168
+ }
169
+
170
+ .progressive-image.loaded {
171
+ filter: blur(0);
172
+ }
173
+
174
+ /* Additional custom animations for enhanced visual effects */
175
+ @keyframes slide-down {
176
+ from {
177
+ opacity: 0;
178
+ transform: translateY(-10px);
179
+ }
180
+ to {
181
+ opacity: 1;
182
+ transform: translateY(0);
183
+ }
184
+ }
185
+
186
+ @keyframes fade-in-up {
187
+ from {
188
+ opacity: 0;
189
+ transform: translateY(10px);
190
+ }
191
+ to {
192
+ opacity: 1;
193
+ transform: translateY(0);
194
+ }
195
+ }
196
+
197
+ .animate-slide-down {
198
+ animation: slide-down 0.6s ease-out;
199
+ }
200
+
201
+ .animate-fade-in-up {
202
+ animation: fade-in-up 0.6s ease-out;
203
+ animation-fill-mode: both;
204
+ }
205
+
206
+ .animation-delay-2000 {
207
+ animation-delay: 2s;
208
+ }
209
+
210
+ .animation-delay-4000 {
211
+ animation-delay: 4s;
212
+ }
@@ -1,96 +1,97 @@
1
- @tailwind base;
2
- @tailwind components;
3
- @tailwind utilities;
4
-
5
- /* Import SaaS Factory UI styles */
6
- @import '@digilogiclabs/saas-factory-ui/dist/index.css';
7
-
8
- @layer base {
9
- :root {
10
- --background: 0 0% 100%;
11
- --foreground: 222.2 84% 4.9%;
12
- --card: 0 0% 100%;
13
- --card-foreground: 222.2 84% 4.9%;
14
- --primary: 221.2 83.2% 53.3%;
15
- --primary-foreground: 210 40% 98%;
16
- --secondary: 210 40% 96%;
17
- --secondary-foreground: 222.2 84% 4.9%;
18
- --border: 214.3 31.8% 91.4%;
19
- --radius: 0.5rem;
20
- }
21
-
22
- .dark {
23
- --background: 222.2 84% 4.9%;
24
- --foreground: 210 40% 98%;
25
- --card: 222.2 84% 4.9%;
26
- --card-foreground: 210 40% 98%;
27
- --primary: 217.2 91.2% 59.8%;
28
- --primary-foreground: 222.2 84% 4.9%;
29
- --secondary: 217.2 32.6% 17.5%;
30
- --secondary-foreground: 210 40% 98%;
31
- --border: 217.2 32.6% 17.5%;
32
- }
33
- }
34
-
35
- @layer base {
36
- * {
37
- @apply border-border;
38
- }
39
- body {
40
- @apply bg-background text-foreground;
41
- }
42
- }
43
-
44
- /* Custom animations for enhanced visual effects */
45
- @keyframes slide-down {
46
- from {
47
- opacity: 0;
48
- transform: translateY(-10px);
49
- }
50
- to {
51
- opacity: 1;
52
- transform: translateY(0);
53
- }
54
- }
55
-
56
- @keyframes fade-in-up {
57
- from {
58
- opacity: 0;
59
- transform: translateY(10px);
60
- }
61
- to {
62
- opacity: 1;
63
- transform: translateY(0);
64
- }
65
- }
66
-
67
- @keyframes marquee {
68
- 0% {
69
- transform: translateX(100%);
70
- }
71
- 100% {
72
- transform: translateX(-100%);
73
- }
74
- }
75
-
76
- .animate-slide-down {
77
- animation: slide-down 0.6s ease-out;
78
- }
79
-
80
- .animate-fade-in-up {
81
- animation: fade-in-up 0.6s ease-out;
82
- animation-fill-mode: both;
83
- }
84
-
85
- .animate-marquee {
86
- animation: marquee 20s linear infinite;
87
- }
88
-
89
- .animation-delay-2000 {
90
- animation-delay: 2s;
91
- }
92
-
93
- .animation-delay-4000 {
94
- animation-delay: 4s;
95
- }
96
-
1
+ /* Import SaaS Factory UI styles */
2
+ @import '@digilogiclabs/saas-factory-ui/dist/index.css';
3
+
4
+ @tailwind base;
5
+ @tailwind components;
6
+ @tailwind utilities;
7
+
8
+
9
+ @layer base {
10
+ :root {
11
+ --background: 0 0% 100%;
12
+ --foreground: 222.2 84% 4.9%;
13
+ --card: 0 0% 100%;
14
+ --card-foreground: 222.2 84% 4.9%;
15
+ --primary: 221.2 83.2% 53.3%;
16
+ --primary-foreground: 210 40% 98%;
17
+ --secondary: 210 40% 96%;
18
+ --secondary-foreground: 222.2 84% 4.9%;
19
+ --border: 214.3 31.8% 91.4%;
20
+ --radius: 0.5rem;
21
+ }
22
+
23
+ .dark {
24
+ --background: 222.2 84% 4.9%;
25
+ --foreground: 210 40% 98%;
26
+ --card: 222.2 84% 4.9%;
27
+ --card-foreground: 210 40% 98%;
28
+ --primary: 217.2 91.2% 59.8%;
29
+ --primary-foreground: 222.2 84% 4.9%;
30
+ --secondary: 217.2 32.6% 17.5%;
31
+ --secondary-foreground: 210 40% 98%;
32
+ --border: 217.2 32.6% 17.5%;
33
+ }
34
+ }
35
+
36
+ @layer base {
37
+ * {
38
+ @apply border-border;
39
+ }
40
+ body {
41
+ @apply bg-background text-foreground;
42
+ }
43
+ }
44
+
45
+ /* Custom animations for enhanced visual effects */
46
+ @keyframes slide-down {
47
+ from {
48
+ opacity: 0;
49
+ transform: translateY(-10px);
50
+ }
51
+ to {
52
+ opacity: 1;
53
+ transform: translateY(0);
54
+ }
55
+ }
56
+
57
+ @keyframes fade-in-up {
58
+ from {
59
+ opacity: 0;
60
+ transform: translateY(10px);
61
+ }
62
+ to {
63
+ opacity: 1;
64
+ transform: translateY(0);
65
+ }
66
+ }
67
+
68
+ @keyframes marquee {
69
+ 0% {
70
+ transform: translateX(100%);
71
+ }
72
+ 100% {
73
+ transform: translateX(-100%);
74
+ }
75
+ }
76
+
77
+ .animate-slide-down {
78
+ animation: slide-down 0.6s ease-out;
79
+ }
80
+
81
+ .animate-fade-in-up {
82
+ animation: fade-in-up 0.6s ease-out;
83
+ animation-fill-mode: both;
84
+ }
85
+
86
+ .animate-marquee {
87
+ animation: marquee 20s linear infinite;
88
+ }
89
+
90
+ .animation-delay-2000 {
91
+ animation-delay: 2s;
92
+ }
93
+
94
+ .animation-delay-4000 {
95
+ animation-delay: 4s;
96
+ }
97
+
@@ -50,8 +50,7 @@
50
50
  "@radix-ui/react-toast": "^1.1.5",
51
51
  "@radix-ui/react-tooltip": "^1.0.7",
52
52
  "@radix-ui/react-progress": "^1.0.3",
53
- "@radix-ui/react-separator": "^1.0.3",
54
- "@radix-ui/react-badge": "^1.0.4"
53
+ "@radix-ui/react-separator": "^1.0.3"
55
54
  },
56
55
  "devDependencies": {
57
56
  "typescript": "^5.0.0",