schedules page removed
This commit is contained in:
@@ -50,7 +50,6 @@ const SeedKeywords = lazy(() => import("./pages/Reference/SeedKeywords"));
|
||||
const ReferenceIndustries = lazy(() => import("./pages/Reference/Industries"));
|
||||
|
||||
// Other Pages - Lazy loaded
|
||||
const Schedules = lazy(() => import("./pages/Schedules"));
|
||||
const AutomationDashboard = lazy(() => import("./pages/Automation/Dashboard"));
|
||||
|
||||
// Settings - Lazy loaded
|
||||
@@ -294,11 +293,6 @@ export default function App() {
|
||||
</ModuleGuard>
|
||||
</Suspense>
|
||||
} />
|
||||
<Route path="/schedules" element={
|
||||
<Suspense fallback={null}>
|
||||
<Schedules />
|
||||
</Suspense>
|
||||
} />
|
||||
|
||||
{/* Settings */}
|
||||
<Route path="/settings" element={
|
||||
|
||||
@@ -21,7 +21,6 @@ import { useAuthStore } from "../../store/authStore";
|
||||
* - /settings (including /settings/sites)
|
||||
* - /dashboard
|
||||
* - /analytics
|
||||
* - /schedules
|
||||
* - /thinker
|
||||
* - /signin, /signup
|
||||
*/
|
||||
@@ -37,7 +36,6 @@ const SITE_SWITCHER_HIDDEN_PATHS = [
|
||||
'/settings',
|
||||
'/dashboard',
|
||||
'/analytics',
|
||||
'/schedules',
|
||||
'/thinker',
|
||||
];
|
||||
|
||||
|
||||
@@ -51,11 +51,6 @@ export const routes: RouteConfig[] = [
|
||||
{ path: '/thinker/profile', label: 'Profile', breadcrumb: 'Profile' },
|
||||
],
|
||||
},
|
||||
{
|
||||
path: '/schedules',
|
||||
label: 'Schedules',
|
||||
icon: 'Schedules',
|
||||
},
|
||||
];
|
||||
|
||||
export const getBreadcrumbs = (pathname: string): Array<{ label: string; path: string }> => {
|
||||
|
||||
@@ -11,7 +11,6 @@ import {
|
||||
PlugInIcon,
|
||||
TaskIcon,
|
||||
BoltIcon,
|
||||
TimeIcon,
|
||||
DocsIcon,
|
||||
PageIcon,
|
||||
DollarLineIcon,
|
||||
@@ -144,12 +143,6 @@ const AppSidebar: React.FC = () => {
|
||||
});
|
||||
}
|
||||
|
||||
workflowItems.push({
|
||||
icon: <TimeIcon />,
|
||||
name: "Schedules",
|
||||
path: "/schedules",
|
||||
});
|
||||
|
||||
return [
|
||||
{
|
||||
label: "OVERVIEW",
|
||||
|
||||
@@ -76,7 +76,7 @@ export default function Help() {
|
||||
},
|
||||
{
|
||||
question: "How do I set up automation?",
|
||||
answer: "Go to Dashboard > Automation Setup section. Enable automation for each step (Keywords, Ideas, Content, Images) and configure settings like how many keywords to process per cycle. Advanced settings are available in Schedules page."
|
||||
answer: "Go to Dashboard > Automation Setup section. Enable automation for each step (Keywords, Ideas, Content, Images) and configure settings like how many keywords to process per cycle. Advanced scheduling settings are available in the Automation menu."
|
||||
},
|
||||
{
|
||||
question: "Can I edit AI-generated content?",
|
||||
@@ -539,7 +539,7 @@ export default function Help() {
|
||||
|
||||
<div className="mt-6 p-4 bg-brand-50 dark:bg-brand-900/10 rounded-lg border border-brand-200 dark:border-brand-800">
|
||||
<p className="text-sm text-brand-800 dark:text-brand-300">
|
||||
<strong>Note:</strong> Configure automation in Dashboard > Automation Setup. For advanced scheduling, go to Schedules page.
|
||||
<strong>Note:</strong> Configure automation in Dashboard > Automation Setup. For advanced scheduling, go to the Automation menu.
|
||||
</p>
|
||||
</div>
|
||||
</Card>
|
||||
|
||||
Reference in New Issue
Block a user