diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2024-01-01 16:32:41 -0500 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2024-01-01 16:32:41 -0500 |
| commit | a0485ad26353a08562c13c14ea9de73fd705f9de (patch) | |
| tree | 1bc499c572e3642b769f7391f493d972a8a749d9 /src/components/Navbar.astro | |
| parent | 0349923dd0a970f009ce7ca54881f8c398c67100 (diff) | |
| download | personal-website-a0485ad26353a08562c13c14ea9de73fd705f9de.tar.gz personal-website-a0485ad26353a08562c13c14ea9de73fd705f9de.tar.bz2 personal-website-a0485ad26353a08562c13c14ea9de73fd705f9de.zip | |
Initial Rewrite
Diffstat (limited to 'src/components/Navbar.astro')
| -rw-r--r-- | src/components/Navbar.astro | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/components/Navbar.astro b/src/components/Navbar.astro new file mode 100644 index 0000000..6cf958a --- /dev/null +++ b/src/components/Navbar.astro @@ -0,0 +1,9 @@ +--- +import "./Navbar.css" +--- +<nav> + <ul> + <li>Home</li> + <li>Projects</li> + </ul> +</nav> |
