--- import BaseLayout from '../layouts/BaseLayout.astro'; interface Props { title: string; description: string; } const { title, description } = Astro.props as Props; ---