Updated global

This commit is contained in:
Laux Dev
2026-02-23 15:52:10 +08:00
parent 275593d754
commit 13d420282e
3 changed files with 9 additions and 19 deletions

View File

@@ -1,13 +1,8 @@
import { Geist, Geist_Mono } from "next/font/google";
import { Geist, Geist_Mono, Inter } from "next/font/google";
import "./globals.css";
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
@@ -19,9 +14,7 @@ export const metadata = {
export default function RootLayout({ children }) {
return (
<html lang="en">
<body className={`${geistSans.variable} ${geistMono.variable}`}>
{children}
</body>
<body className={`${inter.variable} `}>{children}</body>
</html>
);
}