--- import "../styles/global.css"; import Navigation from "../components/Navigation.astro"; import { Font } from "astro:assets"; interface Props { title: string; theme?: "portfolio" | "blog" | "book" | "default"; description?: string; } const { title, theme = "default", description = "Persönliche Webseite von Daniel Kluge", } = Astro.props; ---