quivr/frontend/app/layout.tsx
!MAD! df694819fa
Redesign the home page (#55)
* fix: Types

* chore: Restructure

* feature: Hero Section

* feature: Navbar

* feature: Tertiary Button

* feature: Add Video

* fix: Video responsive

* feature: Dark Mode toggle

* fix: Contrast

* feature: Store dark mode in localstorage

* style: Colors and bg blur
2023-05-18 13:37:03 +02:00

29 lines
692 B
TypeScript

import NavBar from "./components/NavBar";
import "./globals.css";
import { Inter } from "next/font/google";
const inter = Inter({ subsets: ["latin"] });
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.",
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
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>
</html>
);
}