--- import Header from "./Header.astro"; import Footer from "./Footer.astro"; import type { Settings } from "../api"; export type Props = { settings: Settings; }; const { settings } = Astro.props as Props; ---