diff options
Diffstat (limited to 'client/src')
| -rw-r--r-- | client/src/app.d.ts | 13 | ||||
| -rw-r--r-- | client/src/app.html | 12 | ||||
| -rw-r--r-- | client/src/lib/index.ts | 1 | ||||
| -rw-r--r-- | client/src/routes/+page.svelte | 2 |
4 files changed, 28 insertions, 0 deletions
diff --git a/client/src/app.d.ts b/client/src/app.d.ts new file mode 100644 index 0000000..d76242a --- /dev/null +++ b/client/src/app.d.ts @@ -0,0 +1,13 @@ +// See https://svelte.dev/docs/kit/types#app.d.ts +// for information about these interfaces +declare global { + namespace App { + // interface Error {} + // interface Locals {} + // interface PageData {} + // interface PageState {} + // interface Platform {} + } +} + +export {}; diff --git a/client/src/app.html b/client/src/app.html new file mode 100644 index 0000000..ecd5efc --- /dev/null +++ b/client/src/app.html @@ -0,0 +1,12 @@ +<!doctype html> +<html lang="en"> + <head> + <meta charset="utf-8" /> + <link rel="icon" href="%sveltekit.assets%/favicon.png" /> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + %sveltekit.head% + </head> + <body data-sveltekit-preload-data="hover"> + <div style="display: contents">%sveltekit.body%</div> + </body> +</html> diff --git a/client/src/lib/index.ts b/client/src/lib/index.ts new file mode 100644 index 0000000..856f2b6 --- /dev/null +++ b/client/src/lib/index.ts @@ -0,0 +1 @@ +// place files you want to import through the `$lib` alias in this folder. diff --git a/client/src/routes/+page.svelte b/client/src/routes/+page.svelte new file mode 100644 index 0000000..cc88df0 --- /dev/null +++ b/client/src/routes/+page.svelte @@ -0,0 +1,2 @@ +<h1>Welcome to SvelteKit</h1> +<p>Visit <a href="https://svelte.dev/docs/kit">svelte.dev/docs/kit</a> to read the documentation</p> |
