diff options
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> |
