import React from 'react'; import { useTranslation } from 'react-i18next'; import { Zap, Shield, Code, Server, Database, Lock, CheckCircle2, FileSignature, FileCheck, Scale, Sparkles } from 'lucide-react'; import WorkflowVisual from '../../components/marketing/WorkflowVisual'; import CTASection from '../../components/marketing/CTASection'; const FeaturesPage: React.FC = () => { const { t } = useTranslation(); return (
{/* Header */}

{t('marketing.features.pageTitle')}

{t('marketing.features.pageSubtitle')}

{/* Feature 1: The Automation Engine */}
{t('marketing.features.automationEngine.badge')}

{t('marketing.features.automationEngine.title')}

{t('marketing.features.automationEngine.description')}

    {[ t('marketing.features.automationEngine.features.visualBuilder'), t('marketing.features.automationEngine.features.aiCopilot'), t('marketing.features.automationEngine.features.integrations'), t('marketing.features.automationEngine.features.templates') ].map((item) => (
  • {item}
  • ))}
{/* Feature 2: Multi-Tenancy */}
tenant_a_vault
tenant_b_vault
{t('marketing.features.multiTenancy.strictDataIsolation')}
{t('marketing.features.multiTenancy.badge')}

{t('marketing.features.multiTenancy.title')}

{t('marketing.features.multiTenancy.description')}

{t('marketing.features.multiTenancy.customDomains.title')}

{t('marketing.features.multiTenancy.customDomains.description')}

{t('marketing.features.multiTenancy.whiteLabeling.title')}

{t('marketing.features.multiTenancy.whiteLabeling.description')}

{/* Feature 3: Digital Contracts */}
{t('marketing.features.contracts.badge')}

{t('marketing.features.contracts.title')}

{t('marketing.features.contracts.description')}

    {[ t('marketing.features.contracts.features.templates'), t('marketing.features.contracts.features.eSignature'), t('marketing.features.contracts.features.auditTrail'), t('marketing.features.contracts.features.pdfGeneration') ].map((item) => (
  • {item}
  • ))}
{/* Contract Preview Mock */}
Service Agreement
Awaiting signature
{/* Compliance Badge */}
ESIGN Act Compliant

{t('marketing.features.contracts.compliance.title')}

{t('marketing.features.contracts.compliance.description')}

{t('marketing.features.contracts.automation.title')}

{t('marketing.features.contracts.automation.description')}

); }; export default FeaturesPage;