import type { Metadata } from "next"; import { noto_sans, noto_sans_arabic } from "@/app/fonts"; import "../../globals.css"; export const metadata: Metadata = { title: "Khoj AI - Chat", description: "Use this page to view a chat with Khoj AI.", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (
{children} ); }