aboutsummaryrefslogtreecommitdiffstats
path: root/code/app-web/src
diff options
context:
space:
mode:
Diffstat (limited to 'code/app-web/src')
-rw-r--r--code/app-web/src/app.d.ts9
-rw-r--r--code/app-web/src/app.html12
-rw-r--r--code/app-web/src/routes/+page.svelte2
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>