Update src/app/layout.tsx

This commit is contained in:
2025-12-28 02:39:55 +00:00
parent 700bf7e104
commit 05a8697997

View File

@@ -1,13 +1,13 @@
import type { Metadata } from "next";
import { Inter_Tight } from "next/font/google";
import { IBM_Plex_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const interTight = Inter_Tight({
variable: "--font-inter-tight",
const ibmPlexSans = IBM_Plex_Sans({
variable: "--font-ibm-plex-sans",
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
weight: ["100", "200", "300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
@@ -47,7 +47,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${interTight.variable} antialiased`}
className={`${ibmPlexSans.variable} antialiased`}
>
<Tag />
{children}
@@ -1273,4 +1273,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}