Fix layout/styling of the factchecker app

This commit is contained in:
sabaimran
2024-08-02 19:06:01 +05:30
parent 0d8cdee60a
commit 1509c536f9
4 changed files with 144 additions and 137 deletions

View File

@@ -1,7 +1,4 @@
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",
@@ -17,8 +14,7 @@ export default function RootLayout({
children: React.ReactNode;
}>) {
return (
<div className={styles.factCheckerLayout}>
<NavMenu selected="none" />
<div>
{children}
</div>
);