mirror of
https://github.com/StanGirard/quivr.git
synced 2024-11-28 05:13:57 +03:00
cf376fb59f
* feat: add brain management button * feat: add brains list * feat: add brain search bar * feat: sort brain list by name * refactor: update brains management page structure * feat(BrainManagement): add new brain button * feat: update import links
28 lines
606 B
TypeScript
28 lines
606 B
TypeScript
"use client";
|
|
import { ReactNode } from "react";
|
|
|
|
import { useSupabase } from "@/lib/context/SupabaseProvider";
|
|
import { redirectToLogin } from "@/lib/router/redirectToLogin";
|
|
|
|
import { BrainsList } from "./[brainId]/components";
|
|
|
|
interface LayoutProps {
|
|
children?: ReactNode;
|
|
}
|
|
|
|
const Layout = ({ children }: LayoutProps): JSX.Element => {
|
|
const { session } = useSupabase();
|
|
if (session === null) {
|
|
redirectToLogin();
|
|
}
|
|
|
|
return (
|
|
<div className="relative h-full w-full flex justify-stretch items-stretch">
|
|
<BrainsList />
|
|
{children}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Layout;
|