--- import type { HTMLAttributes } from "astro/types"; import Socials from "./Socials.astro"; const currentYear = new Date().getFullYear(); type Props = { noMarginTop?: boolean; } & HTMLAttributes<"footer">; const { noMarginTop = false, class: className, ...attrs } = Astro.props; ---