2023-05-18 14:37:03 +03:00
|
|
|
import NavBar from "./components/NavBar";
|
|
|
|
import "./globals.css";
|
|
|
|
import { Inter } from "next/font/google";
|
2023-05-18 02:22:13 +03:00
|
|
|
|
2023-05-18 14:37:03 +03:00
|
|
|
const inter = Inter({ subsets: ["latin"] });
|
2023-05-18 02:22:13 +03:00
|
|
|
|
|
|
|
export const metadata = {
|
2023-05-18 14:37:03 +03:00
|
|
|
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,
|
|
|
|
}: {
|
2023-05-18 14:37:03 +03:00
|
|
|
children: React.ReactNode;
|
2023-05-18 02:22:13 +03:00
|
|
|
}) {
|
|
|
|
return (
|
|
|
|
<html lang="en">
|
2023-05-18 14:37:03 +03:00
|
|
|
<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 14:37:03 +03:00
|
|
|
);
|
2023-05-18 02:22:13 +03:00
|
|
|
}
|