feat(help): help page with tree navigation, 6 help articles, routes in StartLayout

This commit is contained in:
Agent Zero
2026-08-17 11:03:16 +02:00
parent d294f22e81
commit 81be3478ff
9 changed files with 328 additions and 1 deletions
@@ -0,0 +1,17 @@
import React from 'react';
import { useParams } from 'react-router-dom';
export function HelpPlaceholderPage() {
const params = useParams();
return (
<div className="max-w-3xl mx-auto prose prose-secondary">
<h1 className="text-2xl font-bold text-secondary-900 mb-4">Hilfe</h1>
<p className="text-secondary-600">
Diese Hilfeseite ({params['*'] || 'unbekannt'}) wird gerade erstellt. Schauen Sie später wieder vorbei.
</p>
<p className="text-secondary-400 text-sm mt-4">
Wählen Sie ein Thema aus dem Menü links um weitere Hilfe-Artikel zu lesen.
</p>
</div>
);
}