Update src/app/layout.tsx

This commit is contained in:
2026-01-17 17:45:45 +00:00
parent 9d27c1880b
commit 4c18065cac

View File

@@ -1,12 +1,11 @@
import type { Metadata } from "next";
import { Poppins } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const poppins = Poppins({
variable: "--font-poppins", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
@@ -37,7 +36,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={poppins.variable}
className={inter.variable}
>
<Tag />
{children}
@@ -1263,4 +1262,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}