import type { Metadata } from 'next' import { Permanent_Marker, Caveat } from 'next/font/google' import './globals.css' const marker = Permanent_Marker({ weight: '400', subsets: ['latin'], variable: '--font-marker', }) const caveat = Caveat({ subsets: ['latin'], variable: '--font-caveat', }) export const metadata: Metadata = { title: 'NoFi | No Finance. No Money. No Tokens. Just Do Less.', description: 'The revolutionary movement of doing absolutely nothing with your money. Because you don\'t have any. And that\'s the point.', openGraph: { title: 'NoFi - The Anti-Finance Movement', description: 'No Finance. No Money. No Tokens. Just Do Less.', url: 'https://nofi.lol', siteName: 'NoFi', type: 'website', }, } export default function RootLayout({ children, }: { children: React.ReactNode }) { return ( {children} ) }