--- import BaseHead from "../components/BaseHead.astro"; import Footer from "../components/nav/Footer.astro"; import { SITE_TITLE, SITE_DESCRIPTION } from "../consts"; import "@fontsource/ubuntu"; import "@fontsource/ubuntu/700.css"; import TopHeader from "../components/nav/TopHeader.astro"; import PageHeadline from "../components/PageHeadline.astro"; import MobileNavDrawer from "../components/nav/MobileNavDrawer.astro"; interface Props { title?: string; description?: string; subtitle?: string; className?: string; } const { title = SITE_TITLE, description = SITE_DESCRIPTION, subtitle, className = "max-w-2xl px-4 py-8", } = Astro.props; ---