--- import { Image } from "astro:assets"; import Logo from "../assets/logo.png"; import FooterContact from "./FooterContact.astro"; import FooterLinkGroup from "./FooterLinkGroup.astro"; import { NAV_LINKS } from "../data/navigation"; const SERVICE_LINKS = [ { text: "Otomasi", href: "/services#otomasi", unimplemented: true }, { text: "Mekanikal & Elektrikal", href: "/services#mekanikal-elektrikal", unimplemented: true }, { text: "Energi & Infrastruktur", href: "/services#energi-infrastruktur", unimplemented: true }, { text: "Pemeliharaan", href: "/services#pemeliharaan", unimplemented: true }, { text: "Dukungan Engineering", href: "/services#dukungan-engineering", unimplemented: true }, ]; const LEGAL_LINKS = [ { text: "Kebijakan Privasi", href: "/privacy-policy", unimplemented: true }, { text: "Syarat & Ketentuan", href: "/terms-of-service", unimplemented: true }, ]; const currentYear = "2024"; ---