khoj/src/interface/web/app/layout.tsx

23 lines
480 B
TypeScript
Raw Normal View History

import type { Metadata } from "next";
import { Noto_Sans } from "next/font/google";
import "./globals.css";
const inter = Noto_Sans({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Khoj AI",
description: "An AI copilot for your second brain",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body className={inter.className}>{children}</body>
</html>
);
}