--- import Hr from "./Hr.astro"; import "../config"; import { SITE } from "../config"; const currentYear = new Date().getFullYear(); export interface Props { noMarginTop?: boolean; } const { noMarginTop = false } = Astro.props; ---