--- import Navigation from '../components/Navigation.astro'; import Footer from '../components/Footer.astro'; import Background from '../components/Background.astro'; import '../styles/global.css'; interface Props { title?: string | undefined; description?: string | undefined; } const { title, description } = Astro.props; --- {title}