import '@/styles/globals.css'; import 'remixicon/fonts/remixicon.css'; import { Fira_Code } from '@next/font/google'; import localFont from '@next/font/local'; import { cn } from '@/lib/utils'; import { type ReactNode } from 'react'; const sans = localFont({ variable: '--font-sans', src: './fonts/Karrik-Regular.woff2', weight: 'variable' }); const code = Fira_Code({ variable: '--font-code', subsets: ['latin'], weight: 'variable' }); export default function RootLayout({ children }: { children: ReactNode }) { return (