diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4345e1a..eeb92bb 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -12,6 +12,7 @@ import { Manrope } from "next/font/google"; import { DM_Sans } from "next/font/google"; import { Public_Sans } from "next/font/google"; import { Mulish } from "next/font/google"; +import { Poppins } from "next/font/google"; @@ -25,13 +26,11 @@ export const metadata: Metadata = { -const mulish = Mulish({ - variable: "--font-mulish", - subsets: ["latin"], -}); -const inter = Inter({ - variable: "--font-inter", + +const poppins = Poppins({ + variable: "--font-poppins", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export default function RootLayout({ @@ -42,7 +41,7 @@ export default function RootLayout({ return ( - + {children}