mirror of
https://github.com/khoaliber/khoj.git
synced 2026-03-05 21:29:11 +00:00
21 lines
442 B
TypeScript
21 lines
442 B
TypeScript
import type { Metadata } from "next";
|
|
|
|
import "../globals.css";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Khoj AI - Search",
|
|
description:
|
|
"Find anything in documents you've shared with Khoj using natural language queries.",
|
|
icons: {
|
|
icon: "/static/favicon.ico",
|
|
},
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return <div>{children}</div>;
|
|
}
|