--- import "../styles/global.css"; import Navigation from "../components/Navigation"; import { GOOGLE_ANALYTICS_ID } from "../config"; export interface Props { title: string; description?: string; ogImage?: string; ogImageAlt?: string; noindex?: boolean; } const { title, description, ogImage = "https://cidr.xyz/og.webp", ogImageAlt = "Color-coded octets illustrating an IP range and CIDR mask", noindex = false, } = Astro.props; ---