mirror of
https://github.com/PlatypusPus/MushroomEmpire.git
synced 2026-02-07 22:18:59 +00:00
23 lines
895 B
TypeScript
23 lines
895 B
TypeScript
"use client";
|
|
import { useState } from "react";
|
|
import { Navbar } from "../../components/Navbar";
|
|
import { Sidebar, TryTab } from "../../components/try/Sidebar";
|
|
import { CenterPanel } from "../../components/try/CenterPanel";
|
|
import { ChatbotPanel } from "../../components/try/ChatbotPanel";
|
|
|
|
export default function TryPage() {
|
|
const [tab, setTab] = useState<TryTab>("processing");
|
|
|
|
return (
|
|
<main className="h-screen flex flex-col">
|
|
<Navbar />
|
|
<div className="flex flex-1 min-h-0 overflow-hidden">
|
|
<Sidebar value={tab} onChange={setTab} />
|
|
<div className="flex-1 min-h-0 flex overflow-hidden">
|
|
<div className="flex-1 min-h-0 min-w-0"><CenterPanel tab={tab} onAnalyze={() => setTab("bias-analysis")} /></div>
|
|
<div className="w-[360px] hidden xl:block h-full flex-none"><ChatbotPanel /></div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
);
|
|
} |