Update src/app/layout.tsx

This commit is contained in:
2025-12-22 12:10:04 +00:00
parent 2ebe7452ed
commit fe535f0337

View File

@@ -1,12 +1,13 @@
import type { Metadata } from "next";
import { Work_Sans } from "next/font/google";
import { Cormorant_Garamond } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const workSans = Work_Sans({
variable: "--font-work-sans",
const cormorantGaramond = Cormorant_Garamond({
variable: "--font-cormorant-garamond",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
@@ -39,7 +40,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${workSans.variable} antialiased`}
className={`${cormorantGaramond.variable} antialiased`}
>
<Tag />
{children}