gbclient/app/layout.tsx
Rodrigo Rodriguez (Pragmatismo) 375d702b19
All checks were successful
GBCI / build (push) Successful in 14m45s
feat: Implement responsive navigation and media player UI
- 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.
2025-06-28 22:36:36 -03:00

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>
)
}