--- interface Props { title: string; description: string; thumbnail?: string; metaURL?: string; } const { title, description, thumbnail, metaURL } = Astro.props; import Layout from "./Layout.astro"; import NavBar from "@/components/global/NavBar.astro"; ---