import '@/styles/globals.css'; import 'remixicon/fonts/remixicon.css'; import { Fira_Code } from 'next/font/google'; import localFont from 'next/font/local'; import { type ReactNode } from 'react'; import { cn } from '@/lib/utils'; import DefaultTags from '@/ui/DefaultTags'; const sans = localFont({ variable: '--font-sans', src: './fonts/Karrik.woff2', weight: 'variable' }); const code = Fira_Code({ variable: '--font-code', subsets: ['latin'], weight: 'variable' }); export const metadata = { title: 'Peer-at Code', description: 'Peer-at Code a pour but de donner l’envie de coder et d’apprendre par le jeu!' }; export default function RootLayout({ children }: { children: ReactNode }) { return (