--- // src/layouts/MainLayout.astro import Header from "../components/Header.astro"; import Footer from "../components/Footer.astro"; import "../styles/global.css"; interface Props { title?: string; description?: string; } const { title = "iten.pro | Engineering", description = "Portfolio und Projekte", } = Astro.props; --- {title}