add handling for non-github repos, fix hydration errors in header, use Link instead of <a>, move contact button to own component, migrate data folders, use music skip buttons for navigating songs on music by time, change icon in footer, update about page with gitea details, rename LastPlayed widget

This commit is contained in:
Aidan 2025-01-23 22:38:44 -05:00
parent 28d0cb4d63
commit 4ea774cca5
14 changed files with 128 additions and 128 deletions

View file

@ -1,7 +1,7 @@
import Header from './components/Header';
import HomePg from './components/pages/Home';
import Footer from './components/Footer';
import NowPlaying from './components/widgets/NowPlaying';
import LastPlayed from './components/widgets/LastPlayed';
export default function Home() {
return (
@ -9,7 +9,7 @@ export default function Home() {
<Header />
<main className="flex-grow container mx-auto px-4 py-12">
<HomePg />
<NowPlaying />
<LastPlayed />
</main>
<Footer />
</div>