Merge version_2 into main #2

Merged
development merged 7 commits from version_2 into main 2026-01-23 00:18:19 +00:00
Showing only changes of commit 99bb8854ae - Show all commits

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>
); );
} }