23 lines
698 B
TypeScript
23 lines
698 B
TypeScript
import PageMeta from "../components/common/PageMeta";
|
|
import ComponentCard from "../components/common/ComponentCard";
|
|
|
|
export default function Schedules() {
|
|
return (
|
|
<>
|
|
<PageMeta title="Schedules - IGNY8" description="Automation schedules" />
|
|
|
|
<ComponentCard title="Coming Soon" desc="Automation schedules">
|
|
<div className="text-center py-8">
|
|
<p className="text-gray-600 dark:text-gray-400">
|
|
Schedules - Coming Soon
|
|
</p>
|
|
<p className="text-sm text-gray-500 dark:text-gray-400 mt-2">
|
|
Content scheduling and automation for consistent publishing
|
|
</p>
|
|
</div>
|
|
</ComponentCard>
|
|
</>
|
|
);
|
|
}
|
|
|