mirror of
https://github.com/khoj-ai/khoj.git
synced 2024-12-20 19:37:45 +00:00
26 lines
713 B
TypeScript
26 lines
713 B
TypeScript
|
|
||
|
import type { Metadata } from "next";
|
||
|
import NavMenu from '../components/navMenu/navMenu';
|
||
|
import styles from './factCheckerLayout.module.css';
|
||
|
|
||
|
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 className={styles.factCheckerLayout}>
|
||
|
<NavMenu selected="none" />
|
||
|
{children}
|
||
|
</div>
|
||
|
);
|
||
|
}
|