diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 73fd20f..b258446 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -10,6 +10,7 @@ import { Lato } from "next/font/google"; import { Nunito } from "next/font/google"; import { Manrope } from "next/font/google"; import { DM_Sans } from "next/font/google"; +import { Archivo } from "next/font/google"; @@ -27,12 +28,9 @@ export const metadata: Metadata = { -const manrope = Manrope({ - variable: "--font-manrope", - subsets: ["latin"], -}); -const dmSans = DM_Sans({ - variable: "--font-dm-sans", + +const archivo = Archivo({ + variable: "--font-archivo", subsets: ["latin"], }); @@ -44,7 +42,7 @@ export default function RootLayout({ return ( - + {children}