--- import '../styles/global.css'; import SEOHead from '../components/SEOHead.astro'; import Footer from '../components/Footer.astro'; import { getLangFromUrl } from '../i18n/utils'; import SimpleCenteredWithBackgroundImage from '../components/ui/heroes/SimpleCenteredWithBackgroundImage'; interface Props { title?: string; description?: string; keywords?: string; ogImage?: string; canonical?: string; noindex?: boolean; pageType?: 'website' | 'article'; } const lang = getLangFromUrl(Astro.url); const props = Astro.props; ---