implement music by time period, clean up header
This commit is contained in:
parent
4b88c00919
commit
37d478d9b8
5 changed files with 161 additions and 10 deletions
15
app/music/page.tsx
Normal file
15
app/music/page.tsx
Normal 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>
|
||||
)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue