diff --git a/src/app/layout.tsx b/src/app/layout.tsx index bd5f81b..9d0788b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -4,6 +4,7 @@ import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; +import { Poppins } from "next/font/google"; @@ -19,13 +20,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({ @@ -36,7 +35,7 @@ export default function RootLayout({ return ( - + {children}