
Some checks failed
GBCI / build (push) Failing after 10m45s
- Introduced a new CSS theme for Orange, featuring a modern color palette with distinct foreground and background colors. - Added an XTree Gold theme that emulates the classic 1980s DOS interface, complete with authentic colors and styles for file management elements. - Both themes include variables for customization and specific styles for various UI components such as cards, popovers, and menus.
26 lines
No EOL
687 B
TypeScript
26 lines
No EOL
687 B
TypeScript
|
|
|
|
import { Nav } from './client-nav';
|
|
import './globals.css';
|
|
|
|
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 attribute="class" defaultTheme="system" enableSystem={true}>
|
|
<Nav />
|
|
<div className="flex-1 overflow-hidden">
|
|
{children}
|
|
</div>
|
|
</ThemeProvider>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
)
|
|
} |