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 ( {children} ); }