Update src/app/layout.tsx

This commit is contained in:
2026-03-03 05:48:16 +00:00
parent 08ee931461
commit 4addbe1ec5

View File

@@ -1,12 +1,11 @@
import type { Metadata } from "next";
import { Roboto } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const roboto = Roboto({
variable: "--font-roboto", subsets: ["latin"],
weight: ["100", "300", "400", "500", "700", "900"],
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
@@ -34,7 +33,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${roboto.variable} antialiased`}>
<body className={`${inter.variable} antialiased`}>
<Tag />
{children}
@@ -1408,4 +1407,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}