--- import Card from "../components/Card.astro"; interface Props { title: string; } const { title } = Astro.props; const path = new URL(Astro.request.url).pathname; const items = [ { href: "/", text: "Home (static)" }, { href: "/ssr", text: "SSR (with auth)" }, { href: "/admin", text: "Admin" } ]; --- {title}

bknd + Astro