import React, { useEffect } from 'react'; import { Link } from 'react-router-dom'; import { useTranslation } from '@/hooks/useTranslation'; export const DesignSystemDemo: React.FC = () => { const { t } = useTranslation(); useEffect(() => { document.title = t('designSystem.pageTitle'); }, [t]); return (

{t('designSystem.title')}

{t('designSystem.underConstruction')}

{t('designSystem.backToHome')}
); };