import Link from "next/link"; import { StatusTerminal } from "./StatusTerminal"; const NAV_LINKS = [ { label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Projects", href: "/projects" }, { label: "Contact", href: "/contact" }, ]; const SOCIALS = [ { label: "GitHub", href: "https://github.com/jasonwoltje" }, { label: "LinkedIn", href: "https://linkedin.com/in/jasonwoltje" }, ]; export function Footer() { return ( ); }