
All checks were successful
GBCI / build (push) Successful in 14m45s
- Added a new navigation style with responsive design in client-nav.css. - Created a comprehensive editor style in editor/style.css for better user experience. - Introduced paper style for ProseMirror editor with enhanced text formatting options. - Developed a media player component with waveform visualization and media library in player/page.tsx. - Styled media player controls and sliders for improved usability in player/style.css. - Implemented media type detection for audio, video, and slides. - Added keyboard shortcuts for media control and navigation.
21 lines
No EOL
599 B
TypeScript
21 lines
No EOL
599 B
TypeScript
import { Nav } from './client-nav';
|
|
import './globals.css' // This path is correct if the file is in your src/app directory
|
|
import { ReactNode } from 'react'
|
|
import { ThemeProvider } from './theme-provider';
|
|
|
|
export default function RootLayout({ children }: { children: ReactNode }) {
|
|
return (
|
|
<html lang="en">
|
|
<body className="flex flex-col min-h-screen">
|
|
<div>
|
|
<ThemeProvider>
|
|
<Nav />
|
|
<div className="flex-1 overflow-hidden">
|
|
{children}
|
|
</div>
|
|
</ThemeProvider>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
)
|
|
} |