Files
Sankofa/portal/src/app/ClientRootLayout.tsx

23 lines
553 B
TypeScript
Raw Normal View History

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