feat: migrate audio player and remove unused pages

- Moved audio player from page component to root layout for persistent playback across all pages
- Removed unused auth pages (login, register) and content pages (contact, dahabiyas, experiences, etc.)
- Updated NavLink text color to gold-900 for better visibility
- Added 'use client' directive to AudioPlayerBar component for client-side rendering
This commit is contained in:
2025-10-24 02:52:08 +02:00
parent 24110d6e92
commit 1b59a205fd
12 changed files with 8 additions and 280 deletions

View File

@@ -1,6 +1,7 @@
import { Inter, Lexend } from 'next/font/google'
import clsx from 'clsx'
import BottomAudioPlayer from '@/components/ui/AudioPlayerBar'
import '@/styles/tailwind.css'
export const metadata = {
@@ -34,7 +35,10 @@ export default function RootLayout({ children }) {
lexend.variable,
)}
>
<body className="flex h-full flex-col pt-20">{children}</body>
<body className="flex h-full flex-col pt-20">
{children}
<BottomAudioPlayer />
</body>
</html>
)
}