From c806cf074d8b724245245084fab77a02815ca902 Mon Sep 17 00:00:00 2001 From: Sean Morley Date: Fri, 29 Mar 2024 22:52:42 +0000 Subject: [PATCH] Add Navbar component and camping logo to page --- src/lib/assets/camping.svg | 1 + src/lib/components/Navbar.svelte | 29 +++++++++++++++++++++++++++++ src/routes/+layout.svelte | 3 +++ src/routes/+page.svelte | 2 ++ 4 files changed, 35 insertions(+) create mode 100644 src/lib/assets/camping.svg create mode 100644 src/lib/components/Navbar.svelte diff --git a/src/lib/assets/camping.svg b/src/lib/assets/camping.svg new file mode 100644 index 0000000..cf10ff0 --- /dev/null +++ b/src/lib/assets/camping.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/lib/components/Navbar.svelte b/src/lib/components/Navbar.svelte new file mode 100644 index 0000000..a7814de --- /dev/null +++ b/src/lib/components/Navbar.svelte @@ -0,0 +1,29 @@ + + + + + + diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index 411a3db..abe44ff 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -1,7 +1,9 @@ +
@@ -9,6 +11,7 @@