23 lines
694 B
TypeScript
23 lines
694 B
TypeScript
import PageMeta from "../../components/common/PageMeta";
|
|
import ComponentCard from "../../components/common/ComponentCard";
|
|
|
|
export default function Profile() {
|
|
return (
|
|
<>
|
|
<PageMeta title="AI Profile - IGNY8" description="AI profile settings" />
|
|
|
|
<ComponentCard title="Coming Soon" desc="AI profile settings">
|
|
<div className="text-center py-8">
|
|
<p className="text-gray-600 dark:text-gray-400">
|
|
AI Profile Settings - Coming Soon
|
|
</p>
|
|
<p className="text-sm text-gray-500 dark:text-gray-400 mt-2">
|
|
Configure AI personality and writing style
|
|
</p>
|
|
</div>
|
|
</ComponentCard>
|
|
</>
|
|
);
|
|
}
|
|
|