Skip to content

Commit

Permalink
2
Browse files Browse the repository at this point in the history
  • Loading branch information
NaviTheCoderboi committed May 4, 2024
1 parent acbe7dd commit 2df9ba3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/Sidebar.astro
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
import Menu from "@assets/icons/Menu.astro";
const links = {
Home: "/",
About: "/#about",
Projects: "/#projects",
Blog: "/blog"
Home: import.meta.env.BASE_URL,
About: import.meta.env.BASE_URL + "#about",
Projects: import.meta.env.BASE_URL + "#projects",
Blog: import.meta.env.BASE_URL + "blog"
} as const;
---

Expand Down

0 comments on commit 2df9ba3

Please sign in to comment.