mirror of
https://github.com/khoaliber/khoj.git
synced 2026-03-03 21:29:08 +00:00
- in-app chat is meant for support requests and currently is only in the settings page, where users are most likely to go if confused IMO
42 lines
1.0 KiB
TypeScript
42 lines
1.0 KiB
TypeScript
import type { Metadata } from "next";
|
|
|
|
import "../globals.css";
|
|
import { ContentSecurityPolicy } from "../common/layoutHelper";
|
|
|
|
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/assets/icons/khoj_lantern.ico",
|
|
apple: "/static/assets/icons/khoj_lantern_256x256.png",
|
|
},
|
|
openGraph: {
|
|
siteName: "Khoj AI",
|
|
title: "Khoj AI - Search",
|
|
description: "Your Second Brain.",
|
|
url: "https://app.khoj.dev/search",
|
|
type: "website",
|
|
images: [
|
|
{
|
|
url: "https://assets.khoj.dev/khoj_lantern_256x256.png",
|
|
width: 256,
|
|
height: 256,
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html>
|
|
<ContentSecurityPolicy />
|
|
<body>{children}</body>
|
|
</html>
|
|
);
|
|
}
|