diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 810e630..3f3e00f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,6 +6,7 @@ import "@/lib/gsap-setup"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Manrope } from "next/font/google"; +import { DM_Sans } from "next/font/google"; @@ -40,8 +41,13 @@ export const metadata: Metadata = { }, }; -const manrope = Manrope({ - variable: "--font-manrope", + +const dmSans = DM_Sans({ + variable: "--font-dm-sans", + subsets: ["latin"], +}); +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); @@ -53,7 +59,7 @@ export default function RootLayout({ return ( - + {children}