Update src/app/layout.tsx

This commit is contained in:
2026-01-20 22:54:15 +00:00
parent e479396e2b
commit bed5fc8085

View File

@@ -1,11 +1,12 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import { Prata } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
const prata = Prata({
variable: "--font-prata", subsets: ["latin"],
weight: ["400"],
});
export const metadata: Metadata = {
@@ -38,7 +39,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={inter.variable}
className={prata.variable}
>
<Tag />
{children}
@@ -1264,4 +1265,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}