--- import type { Project } from "@/types"; interface Props { project: Project; } const { project: { name, description, languages, links }, } = Astro.props; const { source, live, internal } = links; const externalLinks = [ { href: source, label: "source" }, { href: live, label: "live" }, ].filter((link) => link.href); ---