--- // biome-ignore-all lint/correctness/noUnusedVariables: Astro template consumes frontmatter values. interface Props { title: string; subtitle?: string; id?: string; align?: "left" | "center"; } const { title, subtitle, id, align = "center" } = Astro.props; const alignClass = align === "center" ? "text-center mx-auto" : ""; ---
{subtitle}
)}