fix: bug font

This commit is contained in:
hamid zarghami
2026-07-13 16:27:24 +03:30
parent 51e9f598c1
commit 4b8031b9e5
12 changed files with 57 additions and 15 deletions
+2 -4
View File
@@ -1,3 +1,4 @@
import "@/assets/iranyekan/fonts.css";
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
@@ -23,10 +24,7 @@ export default function RootLayout({
children: React.ReactNode;
}>) {
return (
<html
lang="en"
className={`${geistSans.variable} ${geistMono.variable} h-full antialiased`}
>
<html lang="en" className={`${geistSans.variable} ${geistMono.variable} h-full antialiased`}>
<body className="min-h-full flex flex-col">{children}</body>
</html>
);