--- import Navbar from '../components/Navbar.astro'; import Footer from '../components/Footer.astro'; import ThemeSwitcher from '../components/ThemeSwitcher.astro'; import '../styles/global.css'; interface Props { title?: string; } const { title = 'Compagnie AspiRêves' } = Astro.props; ---