Update src/app/layout.tsx

This commit is contained in:
2026-01-23 00:18:13 +00:00
parent 8e24c6a5c7
commit 99bb8854ae

View File

@@ -1,10 +1,9 @@
import type { Metadata } from "next";
import { Prata } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
const prata = Prata({
variable: "--font-prata", subsets: ["latin"],
weight: ["400"],
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
@@ -35,7 +34,7 @@ export default function RootLayout({
}>) {
return (
<html lang="en">
<body className={`${prata.variable} antialiased`}>
<body className={`${inter.variable} antialiased`}>
{children}
<script
@@ -1258,4 +1257,4 @@ export default function RootLayout({
</body>
</html>
);
}
}