diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7de5e79..7e9def2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -10,6 +10,7 @@ import { Montserrat } from "next/font/google"; import { Poppins } from "next/font/google"; import { Mulish } from "next/font/google"; import { Inter_Tight } from "next/font/google"; +import { DM_Sans } from "next/font/google"; @@ -26,10 +27,14 @@ export const metadata: Metadata = { -const interTight = Inter_Tight({ - variable: "--font-inter-tight", + +const dmSans = DM_Sans({ + variable: "--font-dm-sans", + subsets: ["latin"], +}); +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export default function RootLayout({ @@ -40,7 +45,7 @@ export default function RootLayout({ return ( - + {children}