--- import Banner from './Banner.astro'; import Nav from './Nav.astro'; export interface Props { title: string; description: string; permalink: string; } const { title, description, permalink } = Astro.props as Props; ---