diff --git a/components/Soundboard/index.tsx b/components/Soundboard/index.tsx index 9475407..a2315f5 100644 --- a/components/Soundboard/index.tsx +++ b/components/Soundboard/index.tsx @@ -7,6 +7,15 @@ export default function Soundboard() { const [playGangbusters] = useSound("/gangbusters.m4a", {soundEnabled: true}); const [playHusky] = useSound("/husky.m4a", {soundEnabled: true}); const [playPrettyFlags] = useSound("/prettyflags.m4a", {soundEnabled: true}); + const [playHobbs] = useSound("/hobbs.m4a", {soundEnabled: true}); + const [playGoodLooking] = useSound("/goodlookingband.m4a", {soundEnabled: true}); + const [playImpressive] = useSound("/impressive.m4a", {soundEnabled: true}); + const [playTallTubas] = useSound("/talltubas.m4a", {soundEnabled: true}); + const [playWildChart] = useSound("/wildChart.m4a", {soundEnabled: true}); + const [playScared] = useSound("/scared.m4a", {soundEnabled: true}); + const [playNotBad] = useSound("/notbad.m4a", {soundEnabled: true}); + const [playStrongTubas] = useSound("/strongtubas.m4a", {soundEnabled: true}); + const [playTallBand] = useSound("/tallband.m4a", {soundEnabled: true}); const getButton = (title: string, play: () => void) => { return @@ -19,6 +28,15 @@ export default function Soundboard() { {getButton("Gangbusters", playGangbusters)} {getButton("Husky", playHusky)} {getButton("Pretty Flags", playPrettyFlags)} + {getButton("Hobbs", playHobbs)} + {getButton("Good Looking Band", playGoodLooking)} + {getButton("Pretty Impressive", playImpressive)} + {getButton("3 Tall Tubas", playTallTubas)} + {getButton("Wild Chart", playWildChart)} + {getButton("Scared Me", playScared)} + {getButton("Not Bad", playNotBad)} + {getButton("Strong Tubas", playStrongTubas)} + {getButton("Tall Band", playTallBand)} ); } \ No newline at end of file diff --git a/public/goodlookingband.m4a b/public/goodlookingband.m4a new file mode 100644 index 0000000..912e27e Binary files /dev/null and b/public/goodlookingband.m4a differ diff --git a/public/hobbs.m4a b/public/hobbs.m4a new file mode 100644 index 0000000..ec4f4b3 Binary files /dev/null and b/public/hobbs.m4a differ diff --git a/public/impressive.m4a b/public/impressive.m4a new file mode 100644 index 0000000..beb5e3d Binary files /dev/null and b/public/impressive.m4a differ diff --git a/public/notbad.m4a b/public/notbad.m4a new file mode 100644 index 0000000..71267c7 Binary files /dev/null and b/public/notbad.m4a differ diff --git a/public/scared.m4a b/public/scared.m4a new file mode 100644 index 0000000..cb87a08 Binary files /dev/null and b/public/scared.m4a differ diff --git a/public/strongtubas.m4a b/public/strongtubas.m4a new file mode 100644 index 0000000..433c6a6 Binary files /dev/null and b/public/strongtubas.m4a differ diff --git a/public/tallband.m4a b/public/tallband.m4a new file mode 100644 index 0000000..4064090 Binary files /dev/null and b/public/tallband.m4a differ diff --git a/public/talltubas.m4a b/public/talltubas.m4a new file mode 100644 index 0000000..8b07b25 Binary files /dev/null and b/public/talltubas.m4a differ diff --git a/public/wildchart.m4a b/public/wildchart.m4a new file mode 100644 index 0000000..d357b4d Binary files /dev/null and b/public/wildchart.m4a differ