import { Folder } from 'lucide-react'; import { useTranslation } from 'react-i18next'; import MobileMenuButton from './MobileMenuButton'; import type { MainContentStateViewProps } from '../../types/types'; export default function MainContentStateView({ mode, isMobile, onMenuClick }: MainContentStateViewProps) { const { t } = useTranslation(); const isLoading = mode === 'loading'; return (
{t('mainContent.settingUpWorkspace')}
{t('mainContent.selectProjectDescription')}
{t('mainContent.tip')}: {isMobile ? t('mainContent.createProjectMobile') : t('mainContent.createProjectDesktop')}