16 lines
458 B
TypeScript
16 lines
458 B
TypeScript
import '@/styles/globals.css';
|
|
import 'remixicon/fonts/remixicon.css';
|
|
|
|
import { cn } from '@/lib/utils';
|
|
import { type ReactNode } from 'react';
|
|
|
|
export default function RootLayout({ children }: { children: ReactNode }) {
|
|
return (
|
|
<html lang="fr" dir="ltr" className={cn('scroll-smooth bg-light-dark [color-scheme:dark]')}>
|
|
<head />
|
|
<body className="relative min-h-screen">
|
|
<main>{children}</main>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|