From 98f5dbca1446abd70beca653ea11440bba6a1171 Mon Sep 17 00:00:00 2001 From: rtkay123 Date: Sun, 12 Apr 2026 15:18:08 +0200 Subject: add webapp --- webapp/src/routes/+layout.svelte | 9 +++++++++ webapp/src/routes/+page.svelte | 2 ++ webapp/src/routes/layout.css | 3 +++ 3 files changed, 14 insertions(+) create mode 100644 webapp/src/routes/+layout.svelte create mode 100644 webapp/src/routes/+page.svelte create mode 100644 webapp/src/routes/layout.css (limited to 'webapp/src/routes') diff --git a/webapp/src/routes/+layout.svelte b/webapp/src/routes/+layout.svelte new file mode 100644 index 0000000..e801ec7 --- /dev/null +++ b/webapp/src/routes/+layout.svelte @@ -0,0 +1,9 @@ + + + +{@render children()} diff --git a/webapp/src/routes/+page.svelte b/webapp/src/routes/+page.svelte new file mode 100644 index 0000000..cc88df0 --- /dev/null +++ b/webapp/src/routes/+page.svelte @@ -0,0 +1,2 @@ +

Welcome to SvelteKit

+

Visit svelte.dev/docs/kit to read the documentation

diff --git a/webapp/src/routes/layout.css b/webapp/src/routes/layout.css new file mode 100644 index 0000000..cd67023 --- /dev/null +++ b/webapp/src/routes/layout.css @@ -0,0 +1,3 @@ +@import 'tailwindcss'; +@plugin '@tailwindcss/forms'; +@plugin '@tailwindcss/typography'; -- cgit v1.2.3