export type NavLink = {
    text: string;
    href: string;
    /** Page/section is not built yet — clicking should show the "in development" alert instead of navigating. */
    unimplemented?: boolean;
};

/** Shared by the Navbar and the Footer's "Tautan Cepat" column. */
export const NAV_LINKS: NavLink[] = [
    { text: "Beranda", href: "/" },
    { text: "Tentang Kami", href: "/#about" },
    { text: "Layanan", href: "/#services" },
    { text: "Proyek", href: "/#projects" },
    { text: "Industri", href: "/#industries" },
    { text: "Berita", href: "/news", unimplemented: true },
    { text: "Hubungi", href: "/contact", unimplemented: true },
];
