peer-at-code-web/app/layout.tsx
2023-02-04 14:20:03 +01:00

14 lines
389 B
TypeScript

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