peer-at-code-web/app/layout.tsx
2023-02-05 18:28:55 +01:00

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