mirror of
https://github.com/khoaliber/khoj.git
synced 2026-03-02 21:19:12 +00:00
48 lines
1.4 KiB
TypeScript
48 lines
1.4 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { noto_sans, noto_sans_arabic } from "@/app/fonts";
|
|
import "../globals.css";
|
|
import { ContentSecurityPolicy } from "../common/layoutHelper";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Khoj AI - Agents",
|
|
description:
|
|
"Find or create agents with custom knowledge, tools and personalities to help address your specific needs.",
|
|
icons: {
|
|
icon: "/static/assets/icons/khoj_lantern.ico",
|
|
apple: "/static/assets/icons/khoj_lantern_256x256.png",
|
|
},
|
|
openGraph: {
|
|
siteName: "Khoj AI",
|
|
title: "Khoj AI - Agents",
|
|
description:
|
|
"Find or create agents with custom knowledge, tools and personalities to help address your specific needs.",
|
|
url: "https://app.khoj.dev/agents",
|
|
type: "website",
|
|
images: [
|
|
{
|
|
url: "https://assets.khoj.dev/khoj_hero.png",
|
|
width: 940,
|
|
height: 525,
|
|
},
|
|
{
|
|
url: "https://assets.khoj.dev/khoj_lantern_256x256.png",
|
|
width: 256,
|
|
height: 256,
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" className={`${noto_sans.variable} ${noto_sans_arabic.variable}`}>
|
|
<ContentSecurityPolicy />
|
|
<body>{children}</body>
|
|
</html>
|
|
);
|
|
}
|