Files
leocrm/frontend/src/pages/help/HelpPlaceholder.tsx
T

20 lines
699 B
TypeScript
Raw Normal View History

import React from 'react';
import { useParams } from 'react-router-dom';
import { useTranslation } from 'react-i18next';
export function HelpPlaceholderPage() {
const { t } = useTranslation();
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">
{t('helpPlaceholder.diesehilfeseite')}{params['*'] || 'unbekannt'}{t('helpPlaceholder.wirdgeradeerstelltschauensiespäter')}
</p>
<p className="text-secondary-400 text-sm mt-4">
{t('helpPlaceholder.wählensieeinthemaausdem')}
</p>
</div>
);
}