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