diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e992cdd..054b7a2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Roboto } from "next/font/google"; +import { Open_Sans } from "next/font/google"; @@ -21,10 +22,14 @@ export const metadata: Metadata = { }; -const roboto = Roboto({ - variable: "--font-roboto", + +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); +const openSans = Open_Sans({ + variable: "--font-open-sans", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], }); export default function RootLayout({ @@ -35,7 +40,7 @@ export default function RootLayout({ return ( - + {children}