diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2024-01-02 21:28:31 -0500 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2024-01-02 21:28:31 -0500 |
| commit | dd7a71191a9e887624b2c537a00d8f30bab39337 (patch) | |
| tree | c5fe73efbd1908989f983ef8e09da571c864728f /src/components/Navbar.astro | |
| parent | 9735f3bd1d8f823402814116464f1e3ae344e3e9 (diff) | |
| download | personal-website-dd7a71191a9e887624b2c537a00d8f30bab39337.tar.gz personal-website-dd7a71191a9e887624b2c537a00d8f30bab39337.tar.bz2 personal-website-dd7a71191a9e887624b2c537a00d8f30bab39337.zip | |
Finished first part of homepage
Diffstat (limited to 'src/components/Navbar.astro')
| -rw-r--r-- | src/components/Navbar.astro | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/Navbar.astro b/src/components/Navbar.astro index 17da17d..a838438 100644 --- a/src/components/Navbar.astro +++ b/src/components/Navbar.astro @@ -2,8 +2,8 @@ import "./Navbar.css" --- <nav> - <ul> - <li><a href="#">Home</a></li> - <li><a href="#">Projects</a></li> + <ul class="nav-list"> + <li class="nav-links"><a href="/" class="nav-link">Home</a></li> + <li class="nav-links"><a href="#" class="nav-link">Projects</a></li> </ul> </nav> |
