--- import Icon from './Icon.astro'; import ThemeToggle from './ThemeToggle.astro'; import type { iconPaths } from './IconPaths'; /** Main menu items */ const textLinks: { label: string; href: string }[] = [ { label: 'Home', href: '/' }, { label: 'Work', href: '/work/' }, { label: 'About', href: '/about/' }, ]; /** Icon links to social media — edit these with links to your profiles! */ const iconLinks: { label: string; href: string; icon: keyof typeof iconPaths }[] = [ { label: 'GitHub', href: 'https://github.com/alexlebens', icon: 'github-logo' }, { label: 'LinkedIn', href: 'https://www.linkedin.com/in/alexanderlebens', icon: 'codepen-logo' }, ]; ---