Spaces:
Sleeping
Sleeping
| 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> | |
| </> | |
| ); | |
| } |