--- import Layout from "@/layouts/Layout.astro"; import GlassHeader from "@/components/GlassHeader"; import HeroSection from "@/components/HeroSection"; import AboutSection from "@/components/AboutSection"; import SkillsMarquee from "@/components/SkillsMarquee"; import ProjectsSection from "@/components/ProjectsSection"; import Footer from "@/components/Footer"; import { useTranslations, type Lang } from "@/i18n/utils"; import { defaultLang } from "@/i18n/ui"; const lang: Lang = defaultLang; const t = useTranslations(lang); const pageTitle = t('page.home.title'); ---