diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 23a8d0a..801fbd6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -34,6 +34,7 @@ import { DM_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import { Archivo } from "next/font/google"; import { Cormorant_Garamond } from "next/font/google"; +import { DM_Sans } from "next/font/google"; const manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], @@ -205,6 +206,11 @@ const cormorantGaramond = Cormorant_Garamond({ weight: ["300", "400", "500", "600", "700"], }); +const dmSans = DM_Sans({ + variable: "--font-dm-sans", + subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -213,7 +219,7 @@ export default function RootLayout({ return ( - + {children}