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 ( {children} ); }