Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #5.
This commit is contained in:
2026-03-04 06:49:50 +00:00

View File

@@ -1,9 +1,9 @@
import type { Metadata } from "next";
import { SF_Pro_Display } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
const sfProDisplay = SF_Pro_Display({
variable: "--font-sf-pro-display", subsets: ["latin"],
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
@@ -17,7 +17,7 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body className={`${sfProDisplay.variable}`}>{children}
<body className={`${inter.variable}`}>{children}
<script
dangerouslySetInnerHTML={{
__html: `