diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 66735cf..6e0825c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,18 @@ import type { Metadata } from "next"; import { Geist, Geist_Mono } from "next/font/google"; +import { Nunito_Sans } from "next/font/google"; import "./globals.css"; -const geist = Geist({ - variable: "--font-geist-sans", subsets: ["latin"], -}); -const geist_mono = Geist_Mono({ - variable: "--font-geist-mono", subsets: ["latin"], -}); export const metadata: Metadata = { title: "Temple AI", description: "Comprehensive Business Solutions - Digital Services, Web Design, Branding, and AI Automation"}; +const nunitoSans = Nunito_Sans({ + variable: "--font-nunito-sans", + subsets: ["latin"], +}); + export default function RootLayout({ children, }: { @@ -33,7 +33,7 @@ export default function RootLayout({ }} /> -
+ {children}