00Boobs00 commited on
Commit
3c845f4
·
verified ·
1 Parent(s): 47f66c8

Upload pages/index.js with huggingface_hub

Browse files
Files changed (1) hide show
  1. pages/index.js +46 -0
pages/index.js ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import Head from 'next/head';
2
+ import AgentWorkspace from '../components/AgentWorkspace';
3
+ import ComfyUI from '../components/ComfyUI';
4
+ import PocketBase from '../components/PocketBase';
5
+ import PocketTTS from '../components/PocketTTS';
6
+ import SearchEngine from '../components/SearchEngine';
7
+
8
+ export default function Home() {
9
+ return (
10
+ <>
11
+ <Head>
12
+ <title>AI Command Center</title>
13
+ <meta name="description" content="Integrated AI Dashboard" />
14
+ </Head>
15
+
16
+ <div className="grid grid-cols-1 gap-6">
17
+ {/* Autonomous Agent Workspace - Hero Section */}
18
+ <div>
19
+ <AgentWorkspace />
20
+ </div>
21
+
22
+ <div className="grid grid-cols-1 lg:grid-cols-2 gap-6">
23
+ {/* ComfyUI Section */}
24
+ <div className="lg:col-span-2">
25
+ <ComfyUI />
26
+ </div>
27
+
28
+ {/* PocketBase Section */}
29
+ <div>
30
+ <PocketBase />
31
+ </div>
32
+
33
+ {/* TTS Section */}
34
+ <div>
35
+ <PocketTTS />
36
+ </div>
37
+
38
+ {/* Search Section */}
39
+ <div className="lg:col-span-2">
40
+ <SearchEngine />
41
+ </div>
42
+ </div>
43
+ </div>
44
+ </>
45
+ );
46
+ }