diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f709207..831b7bb 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -4,6 +4,8 @@ import { DM_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; +import { DM_Sans } from "next/font/google"; +import { Inter } from "next/font/google"; const manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], @@ -35,6 +37,15 @@ export const metadata: Metadata = { } }; +const dmSans = DM_Sans({ + variable: "--font-dm-sans", + subsets: ["latin"], +}); +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -43,9 +54,7 @@ export default function RootLayout({ return ( - + {children}