diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8d46cb0..48840e2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,12 +1,20 @@ import type { Metadata } from 'next'; -import { Inter } from 'next/font/google'; +import { Geist, Geist_Mono } from 'next/font/google'; import './globals.css'; -const inter = Inter({ subsets: ['latin'] }); +const geist = Geist({ + variable: '--font-geist-sans', + subsets: ['latin'], +}); + +const geistMono = Geist_Mono({ + variable: '--font-geist-mono', + subsets: ['latin'], +}); export const metadata: Metadata = { - title: 'Welcome', - description: 'Your conversion-focused platform', + title: 'Create Next App', + description: 'Generated by create next app', }; export default function RootLayout({ @@ -16,7 +24,9 @@ export default function RootLayout({ }) { return ( - {children} + + {children} +