Epoch_engine / src /interface /web /app /agents /layout.tsx
Epoch01's picture
Upload folder using huggingface_hub
9caffaa verified
Raw
History Blame Contribute Delete
1.18 kB
import type { Metadata } from "next";
import "../globals.css";
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 ChildLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return <>{children}</>;
}