import * as hi from "jsr:@preact-icons/hi2"; interface HeaderLink { name: string; linkTo: string; // deno-lint-ignore no-explicit-any icon: any; newTab?: boolean; } const headerLinks: Array = [ { name: "Home", linkTo: `${Deno.env.get("BASE_URI_WEB")}/`, icon: , }, { name: "Blog", linkTo: `${Deno.env.get("BASE_URI_WEB")}/posts`, icon: , }, { name: "Projects", linkTo: `${Deno.env.get("BASE_URI_WEB")}/projects`, icon: , }, { name: "Contact", linkTo: `${Deno.env.get("BASE_URI_WEB")}/contact`, icon: , }, ]; export default function Header() { return (
); }