gbclient/app/layout.tsx
Rodrigo Rodriguez (Pragmatismo) a3c37e31ac
Some checks failed
GBCI / build (push) Failing after 8m35s
feat: Add mobile chat interface and command input to footer component
2025-06-29 21:33:12 -03:00

28 lines
No EOL
832 B
TypeScript

import { ReactNode } from 'react';
import { ThemeProvider } from './theme-provider';
import Nav from './client-nav';
export default function RootLayout({ children }: { children: ReactNode }) {
return (
<html lang="en">
<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>
<body className="flex flex-col min-h-screen">
<div>
<ThemeProvider>
<Nav />
<div className="flex-1 overflow-hidden">
{children}
</div>
</ThemeProvider>
</div>
</body>
</html>
);
}