23 lines
553 B
TypeScript
23 lines
553 B
TypeScript
|
|
'use client';
|
||
|
|
|
||
|
|
import { Inter } from 'next/font/google';
|
||
|
|
|
||
|
|
import { AppShell } from '@/components/layout/AppShell';
|
||
|
|
|
||
|
|
import { Providers } from './providers';
|
||
|
|
import './globals.css';
|
||
|
|
|
||
|
|
const inter = Inter({ subsets: ['latin'] });
|
||
|
|
|
||
|
|
export function ClientRootLayout({ children }: { children: React.ReactNode }) {
|
||
|
|
return (
|
||
|
|
<html lang="en">
|
||
|
|
<body className={`${inter.className} min-h-screen bg-gray-950 text-gray-100 antialiased`}>
|
||
|
|
<Providers>
|
||
|
|
<AppShell>{children}</AppShell>
|
||
|
|
</Providers>
|
||
|
|
</body>
|
||
|
|
</html>
|
||
|
|
);
|
||
|
|
}
|