--- import { DISCORD_INVITE_URL, GITHUB_REPO_URL } from '@/consts'; import { ArrowUpRight } from 'lucide-react'; import GitHub from './icons/GitHub'; import Discord from './icons/Discord'; type NavLink = { href: string; label: string; external?: boolean; }; const navLinks: NavLink[] = [ { href: '/', label: 'Home' }, { href: '/docs', label: 'Docs' }, { href: '/blog', label: 'Blog' }, { href: '/privacy', label: 'Privacy' }, ]; type Props = { class?: string; }; const { class: className } = Astro.props; ---