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