--- import BaseHead from '../components/BaseHead.astro'; import Header from '../components/Header.astro'; import Footer from '../components/Footer.astro'; export interface Props { title: string; description: string; permalink: string; current?: string; } const { title, description, permalink, current } = Astro.props; ---