Update src/app/layout.tsx

This commit is contained in:
2026-01-22 21:34:41 +00:00
parent 12ada74591
commit 1edff1ec5b

View File

@@ -1,11 +1,11 @@
import type { Metadata } from "next";
import { Source_Code_Pro } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const sourceCodePro = Source_Code_Pro({
variable: "--font-source-code-pro", subsets: ["latin"],
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
@@ -36,7 +36,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${sourceCodePro.variable} antialiased`}
className={`${inter.variable} antialiased`}
>
<Tag />
{children}