2025-06-28 23:58:53 -03:00
|
|
|
|
2025-04-02 20:42:47 -03:00
|
|
|
import { Nav } from './client-nav';
|
2025-06-28 23:58:53 -03:00
|
|
|
import { ReactNode } from 'react';
|
2025-06-21 19:06:13 -03:00
|
|
|
import { ThemeProvider } from './theme-provider';
|
|
|
|
|
2025-04-02 20:42:47 -03:00
|
|
|
export default function RootLayout({ children }: { children: ReactNode }) {
|
|
|
|
return (
|
|
|
|
<html lang="en">
|
2025-06-28 23:58:53 -03:00
|
|
|
<head>
|
|
|
|
<title>General Bots</title>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<meta name="description" content="General Bots and Custo AI Models" />
|
|
|
|
<link rel="stylesheet" href="/output.css" />
|
|
|
|
<link rel="icon" href="/favicon.ico" />
|
|
|
|
</head>
|
2025-06-28 19:30:35 -03:00
|
|
|
<body className="flex flex-col min-h-screen">
|
|
|
|
<div>
|
2025-06-28 22:36:36 -03:00
|
|
|
<ThemeProvider>
|
2025-06-28 19:30:35 -03:00
|
|
|
<Nav />
|
|
|
|
<div className="flex-1 overflow-hidden">
|
|
|
|
{children}
|
|
|
|
</div>
|
|
|
|
</ThemeProvider>
|
|
|
|
</div>
|
2025-04-02 20:42:47 -03:00
|
|
|
</body>
|
|
|
|
</html>
|
2025-06-28 23:58:53 -03:00
|
|
|
);
|
2025-04-02 20:42:47 -03:00
|
|
|
}
|