--- import { type Lang } from '@/i18n/utils'; import { defaultLang } from '@/i18n/ui'; import GlassHeader from '@/components/GlassHeader'; import Footer from '@/components/Footer'; import "../styles/global.css"; export interface Props { title: string; description?: string; } const { title, description = 'Explore my latest thoughts on coding, tech trends, and developer life.' } = Astro.props; const lang = Astro.currentLocale as Lang || defaultLang; ---