00Boobs00's picture
Upload pages/index.js with huggingface_hub
c454b99 verified
raw
history blame contribute delete
905 Bytes
import Head from 'next/head';
import ComfyUI from '../components/ComfyUI';
import PocketBase from '../components/PocketBase';
import PocketTTS from '../components/PocketTTS';
import SearchEngine from '../components/SearchEngine';
export default function Home() {
return (
<>
<Head>
<title>AI Command Center</title>
<meta name="description" content="Integrated AI Dashboard" />
</Head>
<div className="grid grid-cols-1 lg:grid-cols-2 gap-6">
{/* ComfyUI Section */}
<div className="lg:col-span-2">
<ComfyUI />
</div>
{/* PocketBase Section */}
<div>
<PocketBase />
</div>
{/* TTS Section */}
<div>
<PocketTTS />
</div>
{/* Search Section */}
<div className="lg:col-span-2">
<SearchEngine />
</div>
</div>
</>
);
}