'use client'; import React from 'react'; import './globals.css'; import { Space_Grotesk, Inter, Poppins } from 'next/font/google'; const poppins = Poppins({ subsets: ['latin'], weight: ['400', '500', '600', '700'], variable: '--font-poppins', }); const spaceGrotesk = Space_Grotesk({ subsets: ['latin'], weight: ['400', '500', '600', '700'], variable: '--font-heading', }); const inter = Inter({ subsets: ['latin'], weight: ['400', '500', '600'], variable: '--font-body', }); export default function RootLayout({ children, }: { children: React.ReactNode; }) { return ( {children} ); }