Update src/app/layout.tsx

This commit is contained in:
2026-01-19 23:07:12 +00:00
parent 633fd447bc
commit 2119af8840

View File

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