From c7ffcaaa28c6d81505b062583bb36fcdf3094c27 Mon Sep 17 00:00:00 2001 From: sasha-astiadi Date: Fri, 24 Oct 2025 02:59:45 +0200 Subject: [PATCH] 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 --- src/app/layout.jsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/app/layout.jsx b/src/app/layout.jsx index 7732f30..2716f03 100644 --- a/src/app/layout.jsx +++ b/src/app/layout.jsx @@ -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 }) { > {children} - )