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 (
{isMobile && (
)} {isLoading ? (

{t('mainContent.loading')}

{t('mainContent.settingUpWorkspace')}

) : (

{t('mainContent.chooseProject')}

{t('mainContent.selectProjectDescription')}

{t('mainContent.tip')}: {isMobile ? t('mainContent.createProjectMobile') : t('mainContent.createProjectDesktop')}

)}
); }