mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-18 16:11:45 +03:00
223d3d9102
* feat: 🎸 responsiveness chat * feat: 🎸 responsive added responsive menu * feat: 🎸 responsive brain management * fix: 🐛 docker prod
33 lines
854 B
TypeScript
33 lines
854 B
TypeScript
"use client";
|
|
|
|
import { UUID } from "crypto";
|
|
import { useParams } from "next/navigation";
|
|
import { useTranslation } from "react-i18next";
|
|
|
|
import { BrainManagementTabs } from "./components";
|
|
|
|
const BrainsManagement = (): JSX.Element => {
|
|
const params = useParams();
|
|
const { t } = useTranslation(["brain"]);
|
|
|
|
const brainId = params?.brainId as UUID | undefined;
|
|
|
|
if (brainId === undefined) {
|
|
return (
|
|
<div className="flex justify-center mt-5 w-full">
|
|
<div className="bg-blue-100 border border-blue-400 text-blue-700 px-4 py-3 rounded relative max-w-md h-fit">
|
|
<p>{ t("selectBrain") }</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<main className="flex flex-col w-full lg:pt-20 lg:px-20 lg:mb-10 sm:pt-4 sm:px-4 sm=mb-2">
|
|
<BrainManagementTabs />
|
|
</main>
|
|
);
|
|
};
|
|
|
|
export default BrainsManagement;
|