diff options
| author | ivarlovlie <git@ivarlovlie.no> | 2022-11-14 07:50:31 +0100 |
|---|---|---|
| committer | ivarlovlie <git@ivarlovlie.no> | 2022-11-14 07:50:31 +0100 |
| commit | e60703aadca7d423c0fbfb189d5ef439fc1df072 (patch) | |
| tree | 10ae5d3910c171918b7c2c6a8ddf77a6b3700513 /code/app-web/src | |
| download | storage-e60703aadca7d423c0fbfb189d5ef439fc1df072.tar.xz storage-e60703aadca7d423c0fbfb189d5ef439fc1df072.zip | |
feat: Initial commit
Diffstat (limited to 'code/app-web/src')
| -rw-r--r-- | code/app-web/src/app.d.ts | 9 | ||||
| -rw-r--r-- | code/app-web/src/app.html | 12 | ||||
| -rw-r--r-- | code/app-web/src/routes/+page.svelte | 2 |
3 files changed, 23 insertions, 0 deletions
diff --git a/code/app-web/src/app.d.ts b/code/app-web/src/app.d.ts new file mode 100644 index 0000000..8f4d638 --- /dev/null +++ b/code/app-web/src/app.d.ts @@ -0,0 +1,9 @@ +// See https://kit.svelte.dev/docs/types#app +// for information about these interfaces +// and what to do when importing types +declare namespace App { + // interface Locals {} + // interface PageData {} + // interface Error {} + // interface Platform {} +} diff --git a/code/app-web/src/app.html b/code/app-web/src/app.html new file mode 100644 index 0000000..5b53ef7 --- /dev/null +++ b/code/app-web/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" /> + %sveltekit.head% + </head> + <body> + <div>%sveltekit.body%</div> + </body> +</html> diff --git a/code/app-web/src/routes/+page.svelte b/code/app-web/src/routes/+page.svelte new file mode 100644 index 0000000..5982b0a --- /dev/null +++ b/code/app-web/src/routes/+page.svelte @@ -0,0 +1,2 @@ +<h1>Welcome to SvelteKit</h1> +<p>Visit <a href="https://kit.svelte.dev">kit.svelte.dev</a> to read the documentation</p> |
