fix structure, add music widget
This commit is contained in:
parent
826d1d4b7d
commit
88149ed26a
4 changed files with 72 additions and 9 deletions
14
app/page.tsx
14
app/page.tsx
|
@ -1,15 +1,17 @@
|
|||
import Header from './components/Header'
|
||||
import Bio from './components/Bio'
|
||||
import Footer from './components/Footer'
|
||||
import Header from './components/Header';
|
||||
import HomePg from './components/pages/Home';
|
||||
import Footer from './components/Footer';
|
||||
import NowPlaying from './components/NowPlaying';
|
||||
|
||||
export default function Home() {
|
||||
return (
|
||||
<div className="min-h-screen flex flex-col">
|
||||
<Header />
|
||||
<main className="flex-grow container mx-auto px-4 py-12">
|
||||
<Bio />
|
||||
<HomePg />
|
||||
<NowPlaying />
|
||||
</main>
|
||||
<Footer />
|
||||
</div>
|
||||
)
|
||||
}
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue