From 38c12ca79b8212af01e3155b998385da247c9508 Mon Sep 17 00:00:00 2001 From: Logan Hunt Date: Sat, 23 Apr 2022 19:42:33 -0600 Subject: [PATCH] Updates --- src/__layout.svelte | 0 src/app.css | 7 ++++ src/app.html | 74 +----------------------------------- src/components/Footer.svelte | 44 +++++++++++++++++++++ src/components/NavBar.svelte | 34 +++++++++++++++++ src/routes/__layout.svelte | 11 ++++++ src/routes/index.svelte | 27 +++++++++++-- src/routes/team/index.svelte | 3 +- 8 files changed, 122 insertions(+), 78 deletions(-) create mode 100644 src/__layout.svelte create mode 100644 src/app.css create mode 100644 src/components/Footer.svelte create mode 100644 src/components/NavBar.svelte create mode 100644 src/routes/__layout.svelte diff --git a/src/__layout.svelte b/src/__layout.svelte new file mode 100644 index 0000000..e69de29 diff --git a/src/app.css b/src/app.css new file mode 100644 index 0000000..f7872d5 --- /dev/null +++ b/src/app.css @@ -0,0 +1,7 @@ +a { + text-decoration: none; +} + +.border-darkish { + border-bottom: 1px dashed #666666; +} diff --git a/src/app.html b/src/app.html index 5747f5d..1697bd0 100644 --- a/src/app.html +++ b/src/app.html @@ -12,81 +12,9 @@ - - - - - - %svelte.head% - -
- %svelte.body% -
- - + %svelte.body% diff --git a/src/components/Footer.svelte b/src/components/Footer.svelte new file mode 100644 index 0000000..91c50a1 --- /dev/null +++ b/src/components/Footer.svelte @@ -0,0 +1,44 @@ + diff --git a/src/components/NavBar.svelte b/src/components/NavBar.svelte new file mode 100644 index 0000000..af0cf67 --- /dev/null +++ b/src/components/NavBar.svelte @@ -0,0 +1,34 @@ + \ No newline at end of file diff --git a/src/routes/__layout.svelte b/src/routes/__layout.svelte new file mode 100644 index 0000000..aa8d8d8 --- /dev/null +++ b/src/routes/__layout.svelte @@ -0,0 +1,11 @@ + + + +
+ +
+