diff options
| author | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2024-05-12 08:33:19 +0100 |
|---|---|---|
| committer | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2024-05-12 08:33:19 +0100 |
| commit | 0f75bf3443996f287b9a8a70abb0b3ac8031def8 (patch) | |
| tree | c8136ceb877e6f7b0c1dc918fe5e2e3626cd5287 /website/src/components/Navbar.astro | |
| parent | 88c6e8a6585c00f0a94e27f1351e77ef18518196 (diff) | |
Styling overhaul
Diffstat (limited to 'website/src/components/Navbar.astro')
| -rw-r--r-- | website/src/components/Navbar.astro | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/website/src/components/Navbar.astro b/website/src/components/Navbar.astro new file mode 100644 index 0000000..bae661b --- /dev/null +++ b/website/src/components/Navbar.astro @@ -0,0 +1,13 @@ +--- +--- + +<nav> + <li> + <ul> + <a href="/">Home</a> + </ul> + <ul> + <a href="/blog">Blog</a> + </ul> + </li> +</nav> |
