create-lumina-project 1.2.0 → 2.0.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/package.json +3 -3
- package/template/.env.example +2 -1
- package/template/nodemon.json +1 -1
- package/template/package.json +26 -15
- package/template/resources/css/app.css +491 -0
- package/template/resources/js/Pages/Errors/404.tsx +32 -0
- package/template/resources/js/Pages/Maintenance.tsx +34 -0
- package/template/resources/js/Pages/Status.tsx +103 -0
- package/template/resources/js/Pages/Welcome.tsx +82 -0
- package/template/resources/js/app.tsx +43 -0
- package/template/resources/js/tsconfig.json +20 -0
- package/template/resources/js/vite-env.d.ts +1 -0
- package/template/resources/views/app.html +14 -0
- package/template/src/controllers/UserController.ts +5 -1
- package/template/src/controllers/WebController.ts +94 -0
- package/template/src/database/migrations/20260420050855-create_refresh_tokens.js +5 -0
- package/template/src/exceptions/Handler.ts +4 -4
- package/template/src/middlewares/ApiAuth.ts +67 -0
- package/template/src/middlewares/Csrf.ts +5 -4
- package/template/src/middlewares/InertiaMiddleware.ts +95 -0
- package/template/src/middlewares/Maintenance.ts +5 -5
- package/template/src/middlewares/RoleGuard.ts +20 -0
- package/template/src/middlewares/Validator.ts +17 -1
- package/template/src/middlewares/WebAuth.ts +122 -0
- package/template/src/models/BaseModel.ts +24 -0
- package/template/src/models/RefreshToken.ts +6 -5
- package/template/src/models/User.ts +3 -5
- package/template/src/routes/api.ts +16 -8
- package/template/src/routes/web.ts +10 -43
- package/template/src/server.ts +115 -0
- package/template/src/types/express/index.d.ts +8 -1
- package/template/src/types/express-inertia.d.ts +28 -0
- package/template/vite.config.ts +20 -0
- package/template/views/404.html +0 -233
- package/template/views/maintenance.html +0 -464
- package/template/views/status.html +0 -545
- package/template/views/welcome.html +0 -495
|
@@ -1,495 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html lang="en">
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="UTF-8">
|
|
5
|
-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
-
<title>Lumina — Express.js Starter Kit</title>
|
|
7
|
-
<meta name="description" content="Lumina: A production-grade Express.js starter kit crafted with TypeScript, OOP architecture, and type-safe database interactions.">
|
|
8
|
-
<link rel="shortcut icon" href="/img/logo2.png" type="image/x-icon">
|
|
9
|
-
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
10
|
-
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
11
|
-
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
|
|
12
|
-
<style>
|
|
13
|
-
*, *::before, *::after {
|
|
14
|
-
margin: 0;
|
|
15
|
-
padding: 0;
|
|
16
|
-
box-sizing: border-box;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
:root {
|
|
20
|
-
--indigo-50: #eef2ff;
|
|
21
|
-
--indigo-100: #e0e7ff;
|
|
22
|
-
--indigo-200: #c7d2fe;
|
|
23
|
-
--indigo-400: #818cf8;
|
|
24
|
-
--indigo-500: #6366f1;
|
|
25
|
-
--indigo-600: #4f46e5;
|
|
26
|
-
--indigo-700: #4338ca;
|
|
27
|
-
--indigo-900: #312e81;
|
|
28
|
-
--slate-50: #f8fafc;
|
|
29
|
-
--slate-100: #f1f5f9;
|
|
30
|
-
--slate-300: #cbd5e1;
|
|
31
|
-
--slate-400: #94a3b8;
|
|
32
|
-
--slate-500: #64748b;
|
|
33
|
-
--slate-600: #475569;
|
|
34
|
-
--slate-700: #334155;
|
|
35
|
-
--slate-800: #1e293b;
|
|
36
|
-
--slate-900: #0f172a;
|
|
37
|
-
--emerald-400: #34d399;
|
|
38
|
-
--emerald-500: #10b981;
|
|
39
|
-
--emerald-900: #064e3b;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
body {
|
|
43
|
-
font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
|
44
|
-
background-color: var(--slate-900);
|
|
45
|
-
color: var(--slate-100);
|
|
46
|
-
min-height: 100vh;
|
|
47
|
-
display: flex;
|
|
48
|
-
flex-direction: column;
|
|
49
|
-
justify-content: center;
|
|
50
|
-
align-items: center;
|
|
51
|
-
overflow: hidden;
|
|
52
|
-
position: relative;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
/* Animated gradient background */
|
|
56
|
-
.bg-gradient {
|
|
57
|
-
position: fixed;
|
|
58
|
-
inset: 0;
|
|
59
|
-
z-index: 0;
|
|
60
|
-
background:
|
|
61
|
-
radial-gradient(ellipse 80% 60% at 20% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 60%),
|
|
62
|
-
radial-gradient(ellipse 60% 80% at 80% 80%, rgba(79, 70, 229, 0.12) 0%, transparent 60%),
|
|
63
|
-
radial-gradient(ellipse 50% 50% at 50% 50%, rgba(129, 140, 248, 0.06) 0%, transparent 70%);
|
|
64
|
-
animation: bgShift 12s ease-in-out infinite alternate;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
@keyframes bgShift {
|
|
68
|
-
0% { opacity: 0.7; transform: scale(1); }
|
|
69
|
-
50% { opacity: 1; transform: scale(1.05); }
|
|
70
|
-
100% { opacity: 0.8; transform: scale(1.02); }
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
/* Floating orbs */
|
|
74
|
-
.orb {
|
|
75
|
-
position: fixed;
|
|
76
|
-
border-radius: 50%;
|
|
77
|
-
filter: blur(80px);
|
|
78
|
-
z-index: 0;
|
|
79
|
-
animation: float 20s ease-in-out infinite;
|
|
80
|
-
pointer-events: none;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
.orb-1 {
|
|
84
|
-
width: 400px;
|
|
85
|
-
height: 400px;
|
|
86
|
-
background: rgba(99, 102, 241, 0.12);
|
|
87
|
-
top: -10%;
|
|
88
|
-
left: -5%;
|
|
89
|
-
animation-delay: 0s;
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
.orb-2 {
|
|
93
|
-
width: 300px;
|
|
94
|
-
height: 300px;
|
|
95
|
-
background: rgba(129, 140, 248, 0.08);
|
|
96
|
-
bottom: -5%;
|
|
97
|
-
right: -5%;
|
|
98
|
-
animation-delay: -7s;
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
.orb-3 {
|
|
102
|
-
width: 200px;
|
|
103
|
-
height: 200px;
|
|
104
|
-
background: rgba(79, 70, 229, 0.1);
|
|
105
|
-
top: 50%;
|
|
106
|
-
left: 60%;
|
|
107
|
-
animation-delay: -14s;
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
@keyframes float {
|
|
111
|
-
0%, 100% { transform: translate(0, 0) rotate(0deg); }
|
|
112
|
-
25% { transform: translate(30px, -40px) rotate(5deg); }
|
|
113
|
-
50% { transform: translate(-20px, 20px) rotate(-3deg); }
|
|
114
|
-
75% { transform: translate(15px, 30px) rotate(2deg); }
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
/* Grid pattern overlay */
|
|
118
|
-
.grid-pattern {
|
|
119
|
-
position: fixed;
|
|
120
|
-
inset: 0;
|
|
121
|
-
z-index: 0;
|
|
122
|
-
background-image:
|
|
123
|
-
linear-gradient(rgba(148, 163, 184, 0.03) 1px, transparent 1px),
|
|
124
|
-
linear-gradient(90deg, rgba(148, 163, 184, 0.03) 1px, transparent 1px);
|
|
125
|
-
background-size: 60px 60px;
|
|
126
|
-
mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 80%);
|
|
127
|
-
-webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 80%);
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
/* Main content */
|
|
131
|
-
.main {
|
|
132
|
-
position: relative;
|
|
133
|
-
z-index: 1;
|
|
134
|
-
display: flex;
|
|
135
|
-
flex-direction: column;
|
|
136
|
-
align-items: center;
|
|
137
|
-
gap: 2rem;
|
|
138
|
-
padding: 2rem;
|
|
139
|
-
width: 100%;
|
|
140
|
-
max-width: 640px;
|
|
141
|
-
animation: fadeInUp 0.8s ease-out both;
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
@keyframes fadeInUp {
|
|
145
|
-
from { opacity: 0; transform: translateY(30px); }
|
|
146
|
-
to { opacity: 1; transform: translateY(0); }
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
/* Logo */
|
|
150
|
-
.logo-wrapper {
|
|
151
|
-
position: relative;
|
|
152
|
-
display: flex;
|
|
153
|
-
align-items: center;
|
|
154
|
-
justify-content: center;
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
.logo-glow {
|
|
158
|
-
position: absolute;
|
|
159
|
-
width: 120px;
|
|
160
|
-
height: 120px;
|
|
161
|
-
border-radius: 28px;
|
|
162
|
-
background: var(--indigo-500);
|
|
163
|
-
opacity: 0.25;
|
|
164
|
-
filter: blur(30px);
|
|
165
|
-
animation: pulse 3s ease-in-out infinite;
|
|
166
|
-
}
|
|
167
|
-
|
|
168
|
-
@keyframes pulse {
|
|
169
|
-
0%, 100% { opacity: 0.2; transform: scale(1); }
|
|
170
|
-
50% { opacity: 0.35; transform: scale(1.1); }
|
|
171
|
-
}
|
|
172
|
-
|
|
173
|
-
.logo {
|
|
174
|
-
width: 88px;
|
|
175
|
-
height: 88px;
|
|
176
|
-
border-radius: 22px;
|
|
177
|
-
position: relative;
|
|
178
|
-
z-index: 1;
|
|
179
|
-
box-shadow:
|
|
180
|
-
0 0 0 1px rgba(99, 102, 241, 0.2),
|
|
181
|
-
0 8px 32px -8px rgba(99, 102, 241, 0.3);
|
|
182
|
-
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
.logo:hover {
|
|
186
|
-
transform: scale(1.05) rotate(-2deg);
|
|
187
|
-
box-shadow:
|
|
188
|
-
0 0 0 1px rgba(99, 102, 241, 0.3),
|
|
189
|
-
0 12px 40px -8px rgba(99, 102, 241, 0.4);
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
/* Header text */
|
|
193
|
-
.header {
|
|
194
|
-
text-align: center;
|
|
195
|
-
}
|
|
196
|
-
|
|
197
|
-
.title {
|
|
198
|
-
font-size: 2.5rem;
|
|
199
|
-
font-weight: 800;
|
|
200
|
-
letter-spacing: -0.03em;
|
|
201
|
-
background: linear-gradient(135deg, #fff 0%, var(--indigo-200) 50%, var(--indigo-400) 100%);
|
|
202
|
-
-webkit-background-clip: text;
|
|
203
|
-
-webkit-text-fill-color: transparent;
|
|
204
|
-
background-clip: text;
|
|
205
|
-
line-height: 1.1;
|
|
206
|
-
margin-bottom: 0.75rem;
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
.subtitle {
|
|
210
|
-
font-size: 1.05rem;
|
|
211
|
-
color: var(--slate-400);
|
|
212
|
-
line-height: 1.7;
|
|
213
|
-
max-width: 480px;
|
|
214
|
-
margin: 0 auto;
|
|
215
|
-
font-weight: 400;
|
|
216
|
-
}
|
|
217
|
-
|
|
218
|
-
/* Glass card */
|
|
219
|
-
.card {
|
|
220
|
-
width: 100%;
|
|
221
|
-
background: rgba(30, 41, 59, 0.5);
|
|
222
|
-
backdrop-filter: blur(20px);
|
|
223
|
-
-webkit-backdrop-filter: blur(20px);
|
|
224
|
-
border: 1px solid rgba(148, 163, 184, 0.08);
|
|
225
|
-
border-radius: 16px;
|
|
226
|
-
padding: 1.75rem;
|
|
227
|
-
animation: fadeInUp 0.8s ease-out 0.2s both;
|
|
228
|
-
}
|
|
229
|
-
|
|
230
|
-
.features {
|
|
231
|
-
display: grid;
|
|
232
|
-
grid-template-columns: 1fr 1fr;
|
|
233
|
-
gap: 1rem;
|
|
234
|
-
}
|
|
235
|
-
|
|
236
|
-
.feature {
|
|
237
|
-
display: flex;
|
|
238
|
-
align-items: flex-start;
|
|
239
|
-
gap: 0.75rem;
|
|
240
|
-
padding: 0.875rem;
|
|
241
|
-
border-radius: 12px;
|
|
242
|
-
background: rgba(148, 163, 184, 0.04);
|
|
243
|
-
border: 1px solid rgba(148, 163, 184, 0.06);
|
|
244
|
-
transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
|
|
245
|
-
}
|
|
246
|
-
|
|
247
|
-
.feature:hover {
|
|
248
|
-
background: rgba(99, 102, 241, 0.06);
|
|
249
|
-
border-color: rgba(99, 102, 241, 0.15);
|
|
250
|
-
transform: translateY(-2px);
|
|
251
|
-
}
|
|
252
|
-
|
|
253
|
-
.feature-icon {
|
|
254
|
-
flex-shrink: 0;
|
|
255
|
-
width: 36px;
|
|
256
|
-
height: 36px;
|
|
257
|
-
border-radius: 10px;
|
|
258
|
-
background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(129, 140, 248, 0.08));
|
|
259
|
-
display: flex;
|
|
260
|
-
align-items: center;
|
|
261
|
-
justify-content: center;
|
|
262
|
-
font-size: 1rem;
|
|
263
|
-
}
|
|
264
|
-
|
|
265
|
-
.feature-text h3 {
|
|
266
|
-
font-size: 0.8rem;
|
|
267
|
-
font-weight: 600;
|
|
268
|
-
color: var(--slate-100);
|
|
269
|
-
margin-bottom: 0.15rem;
|
|
270
|
-
}
|
|
271
|
-
|
|
272
|
-
.feature-text p {
|
|
273
|
-
font-size: 0.72rem;
|
|
274
|
-
color: var(--slate-400);
|
|
275
|
-
line-height: 1.4;
|
|
276
|
-
}
|
|
277
|
-
|
|
278
|
-
/* Status bar */
|
|
279
|
-
.status-bar {
|
|
280
|
-
width: 100%;
|
|
281
|
-
display: flex;
|
|
282
|
-
align-items: center;
|
|
283
|
-
justify-content: center;
|
|
284
|
-
gap: 1.5rem;
|
|
285
|
-
animation: fadeInUp 0.8s ease-out 0.35s both;
|
|
286
|
-
}
|
|
287
|
-
|
|
288
|
-
.status {
|
|
289
|
-
display: inline-flex;
|
|
290
|
-
align-items: center;
|
|
291
|
-
gap: 0.5rem;
|
|
292
|
-
padding: 0.6rem 1.25rem;
|
|
293
|
-
background: rgba(16, 185, 129, 0.08);
|
|
294
|
-
border: 1px solid rgba(16, 185, 129, 0.15);
|
|
295
|
-
border-radius: 999px;
|
|
296
|
-
font-size: 0.8rem;
|
|
297
|
-
font-weight: 600;
|
|
298
|
-
color: var(--emerald-400);
|
|
299
|
-
letter-spacing: 0.01em;
|
|
300
|
-
}
|
|
301
|
-
|
|
302
|
-
.status-dot {
|
|
303
|
-
width: 8px;
|
|
304
|
-
height: 8px;
|
|
305
|
-
border-radius: 50%;
|
|
306
|
-
background: var(--emerald-400);
|
|
307
|
-
box-shadow: 0 0 8px rgba(52, 211, 153, 0.5);
|
|
308
|
-
animation: blink 2s ease-in-out infinite;
|
|
309
|
-
}
|
|
310
|
-
|
|
311
|
-
@keyframes blink {
|
|
312
|
-
0%, 100% { opacity: 1; }
|
|
313
|
-
50% { opacity: 0.4; }
|
|
314
|
-
}
|
|
315
|
-
|
|
316
|
-
/* Action links */
|
|
317
|
-
.actions {
|
|
318
|
-
display: flex;
|
|
319
|
-
align-items: center;
|
|
320
|
-
gap: 0.75rem;
|
|
321
|
-
animation: fadeInUp 0.8s ease-out 0.5s both;
|
|
322
|
-
}
|
|
323
|
-
|
|
324
|
-
.btn {
|
|
325
|
-
display: inline-flex;
|
|
326
|
-
align-items: center;
|
|
327
|
-
gap: 0.5rem;
|
|
328
|
-
padding: 0.7rem 1.5rem;
|
|
329
|
-
border-radius: 12px;
|
|
330
|
-
font-size: 0.85rem;
|
|
331
|
-
font-weight: 600;
|
|
332
|
-
text-decoration: none;
|
|
333
|
-
transition: all 0.25s ease;
|
|
334
|
-
cursor: pointer;
|
|
335
|
-
}
|
|
336
|
-
|
|
337
|
-
.btn-primary {
|
|
338
|
-
background: linear-gradient(135deg, var(--indigo-600), var(--indigo-500));
|
|
339
|
-
color: white;
|
|
340
|
-
box-shadow: 0 4px 16px -4px rgba(99, 102, 241, 0.4);
|
|
341
|
-
border: 1px solid rgba(129, 140, 248, 0.2);
|
|
342
|
-
}
|
|
343
|
-
|
|
344
|
-
.btn-primary:hover {
|
|
345
|
-
background: linear-gradient(135deg, var(--indigo-500), var(--indigo-400));
|
|
346
|
-
box-shadow: 0 6px 24px -4px rgba(99, 102, 241, 0.5);
|
|
347
|
-
transform: translateY(-2px);
|
|
348
|
-
}
|
|
349
|
-
|
|
350
|
-
.btn-secondary {
|
|
351
|
-
background: rgba(148, 163, 184, 0.06);
|
|
352
|
-
color: var(--slate-300);
|
|
353
|
-
border: 1px solid rgba(148, 163, 184, 0.1);
|
|
354
|
-
}
|
|
355
|
-
|
|
356
|
-
.btn-secondary:hover {
|
|
357
|
-
background: rgba(148, 163, 184, 0.1);
|
|
358
|
-
color: var(--slate-100);
|
|
359
|
-
border-color: rgba(148, 163, 184, 0.18);
|
|
360
|
-
transform: translateY(-2px);
|
|
361
|
-
}
|
|
362
|
-
|
|
363
|
-
.btn svg {
|
|
364
|
-
width: 16px;
|
|
365
|
-
height: 16px;
|
|
366
|
-
}
|
|
367
|
-
|
|
368
|
-
/* Footer */
|
|
369
|
-
.footer {
|
|
370
|
-
margin-top: 0.5rem;
|
|
371
|
-
font-size: 0.75rem;
|
|
372
|
-
color: var(--slate-600);
|
|
373
|
-
animation: fadeInUp 0.8s ease-out 0.5s both;
|
|
374
|
-
letter-spacing: 0.02em;
|
|
375
|
-
}
|
|
376
|
-
|
|
377
|
-
.footer a {
|
|
378
|
-
color: var(--indigo-400);
|
|
379
|
-
text-decoration: none;
|
|
380
|
-
font-weight: 500;
|
|
381
|
-
transition: color 0.2s ease;
|
|
382
|
-
}
|
|
383
|
-
|
|
384
|
-
.footer a:hover {
|
|
385
|
-
color: var(--indigo-200);
|
|
386
|
-
}
|
|
387
|
-
|
|
388
|
-
/* Responsive */
|
|
389
|
-
@media (max-width: 540px) {
|
|
390
|
-
.title {
|
|
391
|
-
font-size: 2rem;
|
|
392
|
-
}
|
|
393
|
-
|
|
394
|
-
.subtitle {
|
|
395
|
-
font-size: 0.95rem;
|
|
396
|
-
}
|
|
397
|
-
|
|
398
|
-
.features {
|
|
399
|
-
grid-template-columns: 1fr;
|
|
400
|
-
}
|
|
401
|
-
|
|
402
|
-
.actions {
|
|
403
|
-
flex-direction: column;
|
|
404
|
-
width: 100%;
|
|
405
|
-
}
|
|
406
|
-
|
|
407
|
-
.btn {
|
|
408
|
-
width: 100%;
|
|
409
|
-
justify-content: center;
|
|
410
|
-
}
|
|
411
|
-
}
|
|
412
|
-
</style>
|
|
413
|
-
</head>
|
|
414
|
-
<body>
|
|
415
|
-
<!-- Background effects -->
|
|
416
|
-
<div class="bg-gradient"></div>
|
|
417
|
-
<div class="orb orb-1"></div>
|
|
418
|
-
<div class="orb orb-2"></div>
|
|
419
|
-
<div class="orb orb-3"></div>
|
|
420
|
-
<div class="grid-pattern"></div>
|
|
421
|
-
|
|
422
|
-
<div class="main">
|
|
423
|
-
<!-- Logo -->
|
|
424
|
-
<div class="logo-wrapper">
|
|
425
|
-
<div class="logo-glow"></div>
|
|
426
|
-
<img src="/img/logo2.png" alt="Lumina Logo" class="logo">
|
|
427
|
-
</div>
|
|
428
|
-
|
|
429
|
-
<!-- Header -->
|
|
430
|
-
<div class="header">
|
|
431
|
-
<h1 class="title">Lumina</h1>
|
|
432
|
-
<p class="subtitle">A production-grade Express.js starter kit crafted with TypeScript. Featuring OOP architecture, Singleton services, and type-safe database interactions.</p>
|
|
433
|
-
</div>
|
|
434
|
-
|
|
435
|
-
<!-- Feature highlights -->
|
|
436
|
-
<div class="card">
|
|
437
|
-
<div class="features">
|
|
438
|
-
<div class="feature">
|
|
439
|
-
<div class="feature-icon">🔷</div>
|
|
440
|
-
<div class="feature-text">
|
|
441
|
-
<h3>TypeScript</h3>
|
|
442
|
-
<p>End-to-end type safety</p>
|
|
443
|
-
</div>
|
|
444
|
-
</div>
|
|
445
|
-
<div class="feature">
|
|
446
|
-
<div class="feature-icon">🏗️</div>
|
|
447
|
-
<div class="feature-text">
|
|
448
|
-
<h3>OOP Architecture</h3>
|
|
449
|
-
<p>Clean, scalable patterns</p>
|
|
450
|
-
</div>
|
|
451
|
-
</div>
|
|
452
|
-
<div class="feature">
|
|
453
|
-
<div class="feature-icon">⚡</div>
|
|
454
|
-
<div class="feature-text">
|
|
455
|
-
<h3>Singleton Services</h3>
|
|
456
|
-
<p>Efficient resource management</p>
|
|
457
|
-
</div>
|
|
458
|
-
</div>
|
|
459
|
-
<div class="feature">
|
|
460
|
-
<div class="feature-icon">🗄️</div>
|
|
461
|
-
<div class="feature-text">
|
|
462
|
-
<h3>Database Ready</h3>
|
|
463
|
-
<p>Type-safe DB interactions</p>
|
|
464
|
-
</div>
|
|
465
|
-
</div>
|
|
466
|
-
</div>
|
|
467
|
-
</div>
|
|
468
|
-
|
|
469
|
-
<!-- Status -->
|
|
470
|
-
<div class="status-bar">
|
|
471
|
-
<div class="status">
|
|
472
|
-
<span class="status-dot"></span>
|
|
473
|
-
Application is Running
|
|
474
|
-
</div>
|
|
475
|
-
</div>
|
|
476
|
-
|
|
477
|
-
<!-- Actions -->
|
|
478
|
-
<div class="actions">
|
|
479
|
-
<a href="/status" class="btn btn-primary">
|
|
480
|
-
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" d="M9 12.75L11.25 15 15 9.75m-3-7.036A11.959 11.959 0 013.598 6 11.99 11.99 0 003 9.749c0 5.592 3.824 10.29 9 11.623 5.176-1.332 9-6.03 9-11.622 0-1.31-.21-2.571-.598-3.751h-.152c-3.196 0-6.1-1.248-8.25-3.285z" /></svg>
|
|
481
|
-
System Status
|
|
482
|
-
</a>
|
|
483
|
-
<a href="https://github.com/glensonansin/lumina" target="_blank" class="btn btn-secondary">
|
|
484
|
-
<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24"><path d="M12 0C5.374 0 0 5.373 0 12c0 5.302 3.438 9.8 8.207 11.387.6.11.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23A11.509 11.509 0 0112 5.803c1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576C20.566 21.797 24 17.3 24 12c0-6.627-5.373-12-12-12z"/></svg>
|
|
485
|
-
Documentation
|
|
486
|
-
</a>
|
|
487
|
-
</div>
|
|
488
|
-
|
|
489
|
-
<!-- Footer -->
|
|
490
|
-
<div class="footer">
|
|
491
|
-
<a href="https://github.com/glensonansin/lumina" target="_blank">Lumina</a> — Built with Express.js & TypeScript
|
|
492
|
-
</div>
|
|
493
|
-
</div>
|
|
494
|
-
</body>
|
|
495
|
-
</html>
|