This commit is contained in:
2026-02-16 19:34:35 +00:00
commit 9ab0940ca4
784 changed files with 41710 additions and 0 deletions
@@ -0,0 +1,25 @@
import { DashboardLayout } from '../Layout';
import { ChatLauncher } from './ChatLauncher';
import { Widget as FileBrowser } from 'plugins/FileBrowser/client';
import { ChatHistory } from './ChatHistory';
import { Catalog } from 'sounds';
import { useServerSettings } from '@/state/useServerSettings';
export const Home = () => {
const { plugins } = useServerSettings();
return (
<DashboardLayout>
<div className="flex flex-col md:flex-row gap-4 md:gap-8 h-full p-4 pt-6 md:p-8 md:pt-12 overflow-y-auto">
<div className="flex flex-col gap-8 flex-1 min-w-0">
<ChatLauncher />
{plugins?.FileBrowser !== false && <FileBrowser />}
</div>
<div className="flex flex-col gap-8 flex-1 min-w-0">
<ChatHistory />
<Catalog />
</div>
</div>
</DashboardLayout>
);
};