--- import Footer from "@/components/Footer.astro" import Header from "@/components/header/Header.astro" import { languageTag } from "@/paraglide/runtime" import { resolvePathname } from "@/utils/linking" interface Props { title: string class?: string } const { title, class: clazz } = Astro.props const mainClass = "grow max-w-[1000px] m-auto sm:min-w-[500px]" ---