feat(automation): own automation page with tree sidebar, separate from agents

This commit is contained in:
Agent Zero
2026-08-17 12:11:14 +02:00
parent 93a53a43f6
commit aa20aba2e7
5 changed files with 158 additions and 1 deletions
@@ -0,0 +1,12 @@
import React from 'react';
export function AutomationPlaceholderPage() {
return (
<div className="max-w-4xl mx-auto">
<h1 className="text-2xl font-bold text-secondary-900 mb-4">Automation</h1>
<p className="text-secondary-600">
Diese Seite wird gerade erstellt. Wählen Sie ein Thema aus dem Menü links.
</p>
</div>
);
}