diff --git a/frontend/components/Header.tsx b/frontend/components/Header.tsx index 927c7c5..e29e60f 100644 --- a/frontend/components/Header.tsx +++ b/frontend/components/Header.tsx @@ -11,54 +11,47 @@ interface HeaderLink { const headerLinks: Array = [ { name: "Home", - linkTo: "/", + linkTo: `${Deno.env.get("BASE_URI_WEB")}/`, icon: , }, { name: "Blog", - linkTo: "posts/", + linkTo: `${Deno.env.get("BASE_URI_WEB")}/posts`, icon: , }, { name: "Projects", - linkTo: "projects/", + linkTo: `${Deno.env.get("BASE_URI_WEB")}/projects`, icon: , }, { name: "Contact", - linkTo: "contact/", + linkTo: `${Deno.env.get("BASE_URI_WEB")}/contact`, icon: , }, ]; export default function Header() { return ( - +
+ +
); }