implement music by time period, clean up header

This commit is contained in:
Aidan 2025-01-07 19:33:22 -05:00
parent 4b88c00919
commit 37d478d9b8
5 changed files with 161 additions and 10 deletions

15
app/music/page.tsx Normal file
View file

@ -0,0 +1,15 @@
import Header from '../components/Header'
import MusicWidget from '../components/Music'
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">
<MusicWidget />
</main>
<Footer />
</div>
)
}