--- import PageLayout from "@/layouts/Base.astro"; const meta = { title: "/soundboard", description: "Click buttons. Hear sounds.", }; const sounds = [ { name: "Ack", file: "/audio/ack.mp3" }, { name: "Airhorn", file: "/audio/airhorn.mp3" }, { name: "Anime Wow", file: "/audio/anime-wow.mp3" }, { name: "Boom", file: "/audio/boom.mp3" }, { name: "Bruh", file: "/audio/bruh.mp3" }, { name: "Lizard", file: "/audio/lizard.mp3" }, ]; ---

/soundboard

{ sounds.map((sound) => ( )) }