diff --git a/src/app/layout.tsx b/src/app/layout.tsx index bd88483..4185a6c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -15,14 +15,15 @@ import { DM_Sans } from "next/font/google"; export const metadata: Metadata = { title: 'Webild Agency | High-Impact Digital Design & Development', description: 'Transform your brand with Webild Agency. We craft high-performance websites and digital experiences designed to scale your business and captivate your audience.', openGraph: { title: 'Webild Agency | High-Impact Digital Design & Development', description: 'Transform your brand with Webild Agency. We craft high-performance websites and digital experiences designed to scale your business and captivate your audience.', type: 'website' } }; -const manrope = Manrope({ - variable: "--font-manrope", - subsets: ["latin"], -}); + const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); export default function RootLayout({ children, @@ -32,7 +33,7 @@ export default function RootLayout({ return ( - + {children}