mirror of
https://github.com/khoaliber/khoj.git
synced 2026-03-13 13:22:35 +00:00
19 lines
499 B
TypeScript
19 lines
499 B
TypeScript
import type { Metadata } from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Khoj AI - Fact Checker",
|
|
description:
|
|
"Use the Fact Checker with Khoj AI for verifying statements. It can research the internet for you, either refuting or confirming the statement using fresh data.",
|
|
icons: {
|
|
icon: "/static/favicon.ico",
|
|
},
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return <div>{children}</div>;
|
|
}
|