--- import BaseLayout from './BaseLayout.astro'; import App from '../App'; interface Props { title?: string; description?: string; image?: string; } const { title = 'Margin', description = 'Annotate the web', image = 'https://margin.at/og.png' } = Astro.props; ---