diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e59605a..86b106e 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 { Lato } from "next/font/google"; +import { Cormorant_Garamond, Lato } from "next/font/google"; @@ -20,11 +21,9 @@ export const metadata: Metadata = { }, }; -const lato = Lato({ - variable: "--font-lato", - subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); + +const cormorantGaramond = Cormorant_Garamond({ variable: "--font-cormorant", subsets: ["latin"], weight: ["300", "400", "500", "600", "700"] }); +const lato = Lato({ variable: "--font-lato", subsets: ["latin"], weight: ["100", "300", "400", "700", "900"] }); export default function RootLayout({ children, @@ -34,7 +33,7 @@ export default function RootLayout({ return ( - + {children}