import Link from "next/link"; import { siteConfig } from "@/lib/site"; const LEGAL_LINKS = [ { href: "/terms", label: "Syarat & Ketentuan" }, { href: "/privacy", label: "Kebijakan Privasi" }, ] as const; const EXPLORE_LINKS = [ { href: "/trips", label: "Open Trip" }, { href: "/people", label: "Cari Teman" }, { href: "/create-trip", label: "Buat Trip" }, ] as const; export function Footer() { const year = new Date().getFullYear(); return ( ); }