diff --git a/public/img/audio-player/next.svg b/public/img/audio-player/next.svg new file mode 100644 index 0000000..84b4d94 --- /dev/null +++ b/public/img/audio-player/next.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/img/audio-player/pause.svg b/public/img/audio-player/pause.svg new file mode 100644 index 0000000..443d1c7 --- /dev/null +++ b/public/img/audio-player/pause.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/img/audio-player/random.svg b/public/img/audio-player/random.svg new file mode 100644 index 0000000..7ded78b --- /dev/null +++ b/public/img/audio-player/random.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/img/audio-player/scale.svg b/public/img/audio-player/scale.svg new file mode 100644 index 0000000..69ebc75 --- /dev/null +++ b/public/img/audio-player/scale.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0c4ffb4..a3af28f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,7 +1,6 @@ -import { Header, Footer } from '@/components'; +import { Header, Footer, PlayerBar } from '@/components'; import type { Metadata, Viewport } from 'next'; - import './globals.css'; export const metadata: Metadata = { @@ -21,9 +20,12 @@ export const viewport: Viewport = { export default function RootLayout({ children }: Readonly<{ children: React.ReactNode }>) { return ( -
- {children} -