--- import NavBar from '../components/NavBar.astro'; export interface Props { title: string; navLinks: { to: string; name: string; img: { src: string; alt: string; } }[] | undefined } const { title, navLinks } = Astro.props; ---