--- import "../styles/global.css"; interface Props { title: string; description?: string; version: string; } const { title, description, version } = Astro.props; const defaultDescription = "An attempt to gather a sensible selection of the most common usage " + "patterns of git into a single and concise specification."; ---