feat: Musik global, Dennis-Teil auf eigene Seite, Mobile-Autoplay

- MusicPlayer ins Layout verschoben (läuft auf allen Seiten)
- Mobile-Autoplay: Desktop startet stumm + fade-in bei Scroll,
  Mobile wartet auf ersten Touch und startet dann mit Fade-In
- Dennis-Perspektive auf eigene Seite /meine-oma ausgelagert,
  dezenter Link "Von Dennis" am Ende der Tribute-Sektion
- "Berge von Essen" entfernt
- "Jacky und Niklas" → "ihre Enkelin" / "Meine Schwester"

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
denshooter
2026-02-16 03:57:48 +01:00
parent 4d56d4904a
commit 6363d1327b
6 changed files with 253 additions and 170 deletions
+7 -1
View File
@@ -1,5 +1,6 @@
import type { Metadata } from 'next'
import { Cormorant_Garamond, Lora } from 'next/font/google'
import GlobalMusicPlayer from '@/components/GlobalMusicPlayer'
import './globals.css'
const cormorant = Cormorant_Garamond({
@@ -18,6 +19,8 @@ const lora = Lora({
display: 'swap',
})
export const dynamic = 'force-dynamic'
export const metadata: Metadata = {
title: 'In Erinnerung an Maria Malejka',
description:
@@ -36,7 +39,10 @@ export default function RootLayout({
}) {
return (
<html lang="de" className={`${cormorant.variable} ${lora.variable}`}>
<body className="font-lora antialiased">{children}</body>
<body className="font-lora antialiased">
{children}
<GlobalMusicPlayer />
</body>
</html>
)
}