import React from 'react'; import { SECTION_IDS, ACCELERATOR_INVESTMENT_CONTENT } from '../constants'; import { InvestmentProject } from '../types'; import Button from './Button'; import { CurrencyDollarIcon, PresentationChartLineIcon, UsersIcon, LightBulbIcon } from '@heroicons/react/24/outline'; interface InvestmentCardProps { project: InvestmentProject; } const InvestmentCard: React.FC = ({ project }) => (
{project.name}

{project.name}

{project.industry}

{ACCELERATOR_INVESTMENT_CONTENT.problemLabel}

{ACCELERATOR_INVESTMENT_CONTENT.solutionLabel}

{ACCELERATOR_INVESTMENT_CONTENT.teamLabel} {project.teamSize} чел.
{ACCELERATOR_INVESTMENT_CONTENT.fundingLabel} {project.fundingSought}
{project.contactEmail ? ( ) : ( )}
); interface AcceleratorInvestmentSectionProps { investmentProjects: InvestmentProject[]; } const AcceleratorInvestmentSection: React.FC = ({ investmentProjects }) => { return (

{ACCELERATOR_INVESTMENT_CONTENT.title}

{ACCELERATOR_INVESTMENT_CONTENT.subtitle}

{investmentProjects && investmentProjects.length > 0 ? (
{investmentProjects.map((project: InvestmentProject) => ( ))}
) : (

{ACCELERATOR_INVESTMENT_CONTENT.emptyStateTitle}

{ACCELERATOR_INVESTMENT_CONTENT.emptyStateMessage}

)}

{ACCELERATOR_INVESTMENT_CONTENT.investorCtaTitle}

{ACCELERATOR_INVESTMENT_CONTENT.investorCtaSubtitle}

{ACCELERATOR_INVESTMENT_CONTENT.contactMethods.map((method) => ( {method.name} ))}
); }; export default AcceleratorInvestmentSection;