--- // src/layouts/BaseLayout.astro import '../styles/global.css'; import '../styles/main.css'; import ThemeToggle from '../components/ThemeToggle.jsx'; export interface Props { title?: string; description?: string; lang?: string; } const { title = "Omoluabi Association Netherlands", description = "Preserving Nigerian culture and heritage in the Netherlands" } = Astro.props; ---