refactor: remove unused audio player component import

- Removed import of BottomAudioPlayer component from layout.jsx as it's no longer being used
- Cleaned up imports to improve code clarity and reduce bundle size
This commit is contained in:
2025-10-24 02:59:45 +02:00
parent 215820ab1d
commit c7ffcaaa28

View File

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