--- import Header from "./Header.astro"; interface Props { title?: string; graph?: { description: string; url: string; type?: "website" | "article" | `${"music" | "video"}.${string}`; image?: string; }; } const { graph } = Astro.props; const title = Astro.props.title ? `${Astro.props.title} | vielle.dev` : "vielle.dev"; ---