--- import Layout from "./Layout.astro"; interface Props { title: string; subtitle?: string; } const { title, subtitle } = Astro.props; import "../styles/ram.css"; ---
{title}
{subtitle &&

{subtitle}

}