2026-08-17 11:03:16 +02:00
|
|
|
import React from 'react';
|
|
|
|
|
import { useParams } from 'react-router-dom';
|
2026-08-27 01:43:06 +02:00
|
|
|
import { useTranslation } from 'react-i18next';
|
2026-08-17 11:03:16 +02:00
|
|
|
|
|
|
|
|
export function HelpPlaceholderPage() {
|
2026-08-27 01:43:06 +02:00
|
|
|
const { t } = useTranslation();
|
2026-08-17 11:03:16 +02:00
|
|
|
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">
|
2026-08-27 01:43:06 +02:00
|
|
|
{t('helpPlaceholder.diesehilfeseite')}{params['*'] || 'unbekannt'}{t('helpPlaceholder.wirdgeradeerstelltschauensiespäter')}
|
2026-08-17 11:03:16 +02:00
|
|
|
</p>
|
|
|
|
|
<p className="text-secondary-400 text-sm mt-4">
|
2026-08-27 01:43:06 +02:00
|
|
|
{t('helpPlaceholder.wählensieeinthemaausdem')}
|
2026-08-17 11:03:16 +02:00
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|