--- import "../styles/global.css"; import Navbar from "../components/Navbar.astro"; interface Props { title: string; ogTitle?: string; ogImage?: string; ogUrl?: string; ogDescription?: string; } const { title, ogTitle, ogImage, ogUrl, ogDescription } = Astro.props; ---