23 lines
706 B
TypeScript
23 lines
706 B
TypeScript
import PageMeta from "../../components/common/PageMeta";
|
|
import ComponentCard from "../../components/common/ComponentCard";
|
|
|
|
export default function ImportExport() {
|
|
return (
|
|
<>
|
|
<PageMeta title="Import/Export - IGNY8" description="Data management" />
|
|
|
|
<ComponentCard title="Coming Soon" desc="Data management">
|
|
<div className="text-center py-8">
|
|
<p className="text-gray-600 dark:text-gray-400">
|
|
Import/Export - Coming Soon
|
|
</p>
|
|
<p className="text-sm text-gray-500 dark:text-gray-400 mt-2">
|
|
Import and export data, manage backups, and transfer content
|
|
</p>
|
|
</div>
|
|
</ComponentCard>
|
|
</>
|
|
);
|
|
}
|
|
|