--- import { array } from "astro/zod"; interface Props { name: string; href?: string; gallery?: string | string[]; } const { name, href, gallery } = Astro.props; ---