diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 962d417..47096df 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,7 +6,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Open_Sans } from "next/font/google"; -import { Poppins } from "next/font/google"; +import { Cormorant_Garamond } from "next/font/google"; @@ -16,9 +16,9 @@ export const metadata: Metadata = { }; -const poppins = Poppins({ - variable: "--font-poppins", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +const cormorantGaramond = Cormorant_Garamond({ + variable: "--font-cormorant-garamond", subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], }); export default function RootLayout({ @@ -29,7 +29,7 @@ export default function RootLayout({ return ( - + {children}