mirror of
https://github.com/khoj-ai/khoj.git
synced 2024-12-19 19:07:44 +00:00
23 lines
480 B
TypeScript
23 lines
480 B
TypeScript
|
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>
|
||
|
);
|
||
|
}
|