quivr/frontend/app/layout.tsx

29 lines
692 B
TypeScript
Raw Normal View History

import NavBar from "./components/NavBar";
import "./globals.css";
import { Inter } from "next/font/google";
2023-05-18 02:22:13 +03:00
const inter = Inter({ subsets: ["latin"] });
2023-05-18 02:22:13 +03:00
export const metadata = {
title: "Quivr - Get a Second Brain with Generative AI",
description:
"Quivr is your second brain in the cloud, designed to easily store and retrieve unstructured information.",
};
2023-05-18 02:22:13 +03:00
export default function RootLayout({
children,
}: {
children: React.ReactNode;
2023-05-18 02:22:13 +03:00
}) {
return (
<html lang="en">
<body
className={`bg-white text-black dark:bg-black dark:text-white min-h-screen w-full ${inter.className}`}
>
<NavBar />
{children}
</body>
2023-05-18 02:22:13 +03:00
</html>
);
2023-05-18 02:22:13 +03:00
}