--- import Head from "@components/Head.astro"; import Header from "@components/Header.astro"; import Footer from "@components/Footer.astro"; import { SITE } from "@consts"; type Props = { title: string; description: string; redirect?: string; }; const { title, description, redirect } = Astro.props; ---