30 lines
1001 B
TypeScript
30 lines
1001 B
TypeScript
import PageMeta from "../../components/common/PageMeta";
|
|
import PageHeader from "../../components/common/PageHeader";
|
|
import ComponentCard from "../../components/common/ComponentCard";
|
|
import { ImageIcon } from "../../icons";
|
|
|
|
export default function ImageTesting() {
|
|
return (
|
|
<>
|
|
<PageMeta title="Image Settings - IGNY8" description="Configure image generation" />
|
|
<PageHeader
|
|
title="Image Settings"
|
|
badge={{ icon: <ImageIcon />, color: 'indigo' }}
|
|
breadcrumb="Thinker / Image Testing"
|
|
selectorVisibility="none"
|
|
/>
|
|
<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>
|
|
</>
|
|
);
|
|
}
|
|
|