--- import { SOCIALS } from "@/constants"; import LinkButton from "./LinkButton.astro"; export interface Props { centered?: boolean; } const { centered = false } = Astro.props; ---
{ SOCIALS.map(social => ( {social.linkTitle} )) }