···11+create table "user" ("id" text not null primary key, "name" text not null, "email" text not null unique, "emailVerified" integer not null, "image" text, "createdAt" date not null, "updatedAt" date not null);
22+33+create table "session" ("id" text not null primary key, "expiresAt" date not null, "token" text not null unique, "createdAt" date not null, "updatedAt" date not null, "ipAddress" text, "userAgent" text, "userId" text not null references "user" ("id") on delete cascade);
44+55+create table "account" ("id" text not null primary key, "accountId" text not null, "providerId" text not null, "userId" text not null references "user" ("id") on delete cascade, "accessToken" text, "refreshToken" text, "idToken" text, "accessTokenExpiresAt" date, "refreshTokenExpiresAt" date, "scope" text, "password" text, "createdAt" date not null, "updatedAt" date not null);
66+77+create table "verification" ("id" text not null primary key, "identifier" text not null, "value" text not null, "expiresAt" date not null, "createdAt" date not null, "updatedAt" date not null);
88+99+create table "jwks" ("id" text not null primary key, "publicKey" text not null, "privateKey" text not null, "createdAt" date not null, "expiresAt" date);
1010+1111+create index "session_userId_idx" on "session" ("userId");
1212+1313+create index "account_userId_idx" on "account" ("userId");
1414+1515+create index "verification_identifier_idx" on "verification" ("identifier");
···11<script lang="ts">
22- import './layout.css';
33- import favicon from '$lib/assets/favicon.svg';
22+ import "../app.css";
33+ import favicon from "$lib/assets/favicon.svg";
4455- let { children } = $props();
55+ let { children } = $props();
66</script>
7788<svelte:head><link rel="icon" href={favicon} /></svelte:head>
+8-1
client/src/routes/+page.svelte
···11<h1>Welcome to SvelteKit</h1>
22-<p>Visit <a href="https://svelte.dev/docs/kit">svelte.dev/docs/kit</a> to read the documentation</p>
22+<p>
33+ Visit <a href="https://svelte.dev/docs/kit">svelte.dev/docs/kit</a> to read the
44+ documentation
55+</p>
66+77+<a href="/authentication/signup"> Sign Up </a>
88+99+<a href="/authentication/signin"> Login </a>