import { useTranslation } from 'react-i18next'; import { Card } from '@/components/ui/Card'; export function PlaceholderPage({ titleKey }: { titleKey: string }) { const { t } = useTranslation(); return (

{t('common.loading')}

); }