add music info buttons and pages

This commit is contained in:
Aidan 2025-01-08 09:14:02 -05:00
parent 28fc3ea7d8
commit b88c258896
9 changed files with 164 additions and 0 deletions

View file

@ -0,0 +1,15 @@
import Header from '../../../components/Header'
import WhatWasGoingOn from '../../../components/pages/time-periods/late-summer-2024/WhatWasGoingOn'
import Footer from '../../../components/Footer'
export default function Music() {
return (
<div className="min-h-screen flex flex-col">
<Header />
<main className="flex-grow container mx-auto px-4 py-12">
<WhatWasGoingOn />
</main>
<Footer />
</div>
)
}