--- import { ClientRouter } from 'astro:transitions'; import '../styles/global.css'; import PostHog from '../components/posthog.astro'; interface Props { title?: string; description?: string; image?: string; } const { title = 'Margin', description = 'Annotate the web', image = 'https://margin.at/og.png' } = Astro.props; ---