--- import SkillBadge from "./SkillBadge.astro"; import type { SkillKey } from "../data/skills"; interface Props { name: string; skills: SkillKey[]; href?: string; gallery?: string | string[]; center?: true; } const { name, href, gallery, center, skills } = Astro.props; ---