initial commit
Some checks failed
CodeQL / Analyze (push) Failing after 1m32s

This commit is contained in:
Ludwig Lehnert
2026-01-11 11:08:48 +01:00
commit 0efd3d954b
58 changed files with 19390 additions and 0 deletions

39
dev/routes.ts Normal file
View File

@@ -0,0 +1,39 @@
import { lazy } from 'solid-js';
import type { RouteDefinition } from '@solidjs/router';
export const routes: RouteDefinition[] = [
{
path: '/auth/login',
component: lazy(() => import('./routes/auth/login')),
},
{
path: '/',
component: lazy(() => import('./routes/(shell)/_layout')),
children: [
{
path: '/',
component: lazy(() => import('./routes/(shell)/index')),
},
{
path: '/forms',
component: lazy(() => import('./routes/(shell)/forms')),
},
{
path: '/data',
component: lazy(() => import('./routes/(shell)/data')),
},
{
path: '/modals',
component: lazy(() => import('./routes/(shell)/modals')),
},
{
path: '/layout',
component: lazy(() => import('./routes/(shell)/layout')),
},
{
path: '*',
component: lazy(() => import('./routes/(shell)/_404')),
},
],
},
];