Update src/app/layout.tsx

This commit is contained in:
2026-05-14 23:00:53 +00:00
parent a75300fba7
commit 1db976ed03

View File

@@ -19,9 +19,10 @@ export const metadata: Metadata = {
},
};
const figtree = Figtree({
variable: "--font-figtree",
subsets: ["latin"],
const halant = Halant({
variable: "--font-halant", subsets: ["arabic"],
weight: ["300", "400", "500", "600", "700"],
});
export default function RootLayout({
@@ -32,7 +33,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${figtree.variable} antialiased`}>
<body className={`${halant.variable} antialiased`}>
<Tag />
{children}
<script