import type { Metadata } from 'next'; import { Geist, Geist_Mono } from 'next/font/google'; import { QueryProvider } from '@/trpc/client'; import './globals.css'; const geistSans = Geist({ variable: '--font-geist-sans', subsets: ['latin'], }); const geistMono = Geist_Mono({ variable: '--font-geist-mono', subsets: ['latin'], }); export const metadata: Metadata = { title: '{{baseName}}', description: 'Fast stack frontend with Next.js', }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return ( {children} ); }