diff --git a/src/interface/web/app/agents/layout.tsx b/src/interface/web/app/agents/layout.tsx index b30c782d..c7779b06 100644 --- a/src/interface/web/app/agents/layout.tsx +++ b/src/interface/web/app/agents/layout.tsx @@ -1,9 +1,7 @@ import type { Metadata } from "next"; -import { Noto_Sans } from "next/font/google"; +import { noto_sans, noto_sans_arabic } from "@/app/fonts"; import "../globals.css"; -const inter = Noto_Sans({ subsets: ["latin"] }); - export const metadata: Metadata = { title: "Khoj AI - Agents", description: "Find a specialized agent that can help you address more specific needs.", @@ -33,7 +31,7 @@ export default function RootLayout({ children: React.ReactNode; }>) { return ( - + -
{children} + {children} ); } diff --git a/src/interface/web/app/chat/layout.tsx b/src/interface/web/app/chat/layout.tsx index 09c3afb7..4e4661f1 100644 --- a/src/interface/web/app/chat/layout.tsx +++ b/src/interface/web/app/chat/layout.tsx @@ -1,9 +1,7 @@ import type { Metadata } from "next"; -import { Noto_Sans } from "next/font/google"; +import { noto_sans, noto_sans_arabic } from "@/app/fonts"; import "../globals.css"; -const inter = Noto_Sans({ subsets: ["latin"] }); - export const metadata: Metadata = { title: "Khoj AI - Chat", description: @@ -34,7 +32,7 @@ export default function RootLayout({ children: React.ReactNode; }>) { return ( - + - + {children}