--- import "./reset.css"; import Head from "../components/Head.astro"; import Nav from "../components/Nav.astro"; import links from "../constants/links"; export interface Props { title?: string; description?: string; } const { title, description } = Astro.props; ---