diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 726122a..f75fbf7 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 { Manrope } from "next/font/google"; +import { Raleway } from "next/font/google"; @@ -21,7 +22,11 @@ export const metadata: Metadata = { }, }; -const manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"] }); + +const raleway = Raleway({ + variable: "--font-raleway", + subsets: ["latin"], +}); export default function RootLayout({ children, @@ -31,7 +36,7 @@ export default function RootLayout({ return ( - + {children}