38 lines
1.5 KiB
TypeScript
38 lines
1.5 KiB
TypeScript
import PageMeta from "../../components/common/PageMeta";
|
|
import PageHeader from "../../components/common/PageHeader";
|
|
import ModuleNavigationTabs from "../../components/navigation/ModuleNavigationTabs";
|
|
import ComponentCard from "../../components/common/ComponentCard";
|
|
import { BoltIcon, UserIcon, ShootingStarIcon, ImageIcon } from "../../icons";
|
|
|
|
export default function ImageTesting() {
|
|
// Thinker navigation tabs
|
|
const thinkerTabs = [
|
|
{ label: 'Prompts', path: '/thinker/prompts', icon: <BoltIcon /> },
|
|
{ label: 'Author Profiles', path: '/thinker/author-profiles', icon: <UserIcon /> },
|
|
{ label: 'Strategies', path: '/thinker/strategies', icon: <ShootingStarIcon /> },
|
|
{ label: 'Image Testing', path: '/thinker/image-testing', icon: <ImageIcon /> },
|
|
];
|
|
|
|
return (
|
|
<>
|
|
<PageMeta title="Image Testing - IGNY8" description="AI image testing" />
|
|
<PageHeader
|
|
title="Image Testing"
|
|
badge={{ icon: <ImageIcon />, color: 'indigo' }}
|
|
navigation={<ModuleNavigationTabs tabs={thinkerTabs} />}
|
|
/>
|
|
<ComponentCard title="Coming Soon" desc="AI image testing">
|
|
<div className="text-center py-8">
|
|
<p className="text-gray-600 dark:text-gray-400">
|
|
Image Testing - Coming Soon
|
|
</p>
|
|
<p className="text-sm text-gray-500 dark:text-gray-400 mt-2">
|
|
Test and configure AI image generation capabilities
|
|
</p>
|
|
</div>
|
|
</ComponentCard>
|
|
</>
|
|
);
|
|
}
|
|
|