From a97d9313a7fffa00fa6919797f44cc0ce36ede7c Mon Sep 17 00:00:00 2001 From: Benjamin Palko Date: Sun, 8 Dec 2024 23:48:20 -0500 Subject: [PATCH] basic navbar --- src/lib/components/Navbar.stories.svelte | 12 +++++++++ src/lib/components/Navbar.svelte | 31 ++++++++++++++++++++++++ src/lib/components/index.ts | 1 + src/lib/index.ts | 1 + 4 files changed, 45 insertions(+) create mode 100644 src/lib/components/Navbar.stories.svelte create mode 100644 src/lib/components/Navbar.svelte create mode 100644 src/lib/components/index.ts diff --git a/src/lib/components/Navbar.stories.svelte b/src/lib/components/Navbar.stories.svelte new file mode 100644 index 0000000..fe5c161 --- /dev/null +++ b/src/lib/components/Navbar.stories.svelte @@ -0,0 +1,12 @@ + + + \ 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..5e0a0e4 --- /dev/null +++ b/src/lib/components/Navbar.svelte @@ -0,0 +1,31 @@ + + +
+ +
+ + \ No newline at end of file diff --git a/src/lib/components/index.ts b/src/lib/components/index.ts new file mode 100644 index 0000000..1689ba6 --- /dev/null +++ b/src/lib/components/index.ts @@ -0,0 +1 @@ +export * from './Navbar.svelte'; \ No newline at end of file diff --git a/src/lib/index.ts b/src/lib/index.ts index 856f2b6..e5efcb2 100644 --- a/src/lib/index.ts +++ b/src/lib/index.ts @@ -1 +1,2 @@ // place files you want to import through the `$lib` alias in this folder. +export * from './components'; \ No newline at end of file