import React, { useState } from 'react'; import { BarChart, Bar, XAxis, YAxis, CartesianGrid, Tooltip, ResponsiveContainer, Cell, PieChart, Pie, Legend, LineChart, Line } from 'recharts'; import { Calendar, Globe, Shield, TrendingUp, Ship, FileCheck, AlertTriangle, Zap, ArrowRight, LayoutDashboard, ArrowDownCircle, ArrowUpCircle, Info } from 'lucide-react'; const App = () => { const [activeTab, setActiveTab] = useState('overview'); const stats = [ { label: 'Combined Market', value: '2B+', sub: 'People' }, { label: 'Collective GDP', value: '$24T+', sub: 'USD' }, { label: 'Trade (2024-25)', value: '$136.5B', sub: 'Bilateral Value' }, { label: 'Tariff Coverage', value: '97%+', sub: 'of Lines' } ]; const timelineData = [ { date: 'Jan 27, 2026', event: 'Negotiation Conclusion', status: 'completed' }, { date: 'Feb - Jul 2026', event: 'Legal Scrubbing & Vetting', status: 'current' }, { date: 'Aug 2026', event: 'Formal Signature', status: 'upcoming' }, { date: 'Late 2026', event: 'Entry into Force', status: 'upcoming' } ]; const exportGains = [ { sector: 'Textiles', current: 12, post: 0 }, { sector: 'Marine', current: 26, post: 0 }, { sector: 'Footwear', current: 17, post: 0 }, { sector: 'Engineering', current: 22, post: 0 }, { sector: 'Gems & Jewellery', current: 4, post: 0 } ]; const importImpact = [ { sector: 'Luxury Cars', current: 110, post: 10, note: '250k Quota' }, { sector: 'Wines', current: 150, post: 20, note: 'Phased' }, { sector: 'Machinery', current: 44, post: 0, note: 'Immediate' }, { sector: 'Olive Oil', current: 45, post: 0, note: '5 Years' } ]; const regulatoryBarriers = [ { id: 'CBAM', title: 'Carbon Border Adjustment', impact: 'High', description: 'Carbon tax on steel, aluminum, etc. tied to EU ETS prices (~€80/tonne).' }, { id: 'EUDR', title: 'Deforestation Regulation', impact: 'Medium-High', description: 'Requires geotagging for coffee, rubber, wood, and leather exports.' }, { id: 'CSDDD', title: 'Sustainability Due Diligence', impact: 'Medium', description: 'Mandatory value chain audits for human rights and environmental risks.' } ]; const SectionHeader = ({ icon: Icon, title, subtitle }) => (

{title}

{subtitle}

); return (
{/* Header */}

INDIA-EU FREE TRADE AGREEMENT

Strategic analysis of market access, regulatory compliance, and the 2026 implementation roadmap.

{['overview', 'tariffs', 'compliance'].map((tab) => ( ))}
{activeTab === 'overview' && ( <> {/* KPI Grid */}
{stats.map((stat, i) => (

{stat.label}

{stat.value}

{stat.sub}

))}
{/* Timeline */}
{timelineData.map((item, i) => (

{item.date}

{item.event}

))}
{/* Strategic Insights */}

IMEC Corridor

The physical counterpart to the FTA. Linking India to Europe via Middle East rail and sea routes, expected to accelerate trade by 40%.

40% LOGISTICS SPEED BOOST

GSP Gap Neutralized

With GSP suspension on Jan 1, 2026, the FTA preserves duty-free access for garments and footwear that would otherwise face full MFN rates.

PROTECTING $33B EXPORTS

Comparative Snapshot: EU vs EFTA

Feature India-EFTA (TEPA) India-EU (FTA)
Investment $100B Pledge (15yrs) Climate/Innovation Platform
Export Lines 92.2% (99.6% value) 97% (99.5% value)
Entry Into Force Oct 1, 2025 Late 2026 (Exp.)
)} {activeTab === 'tariffs' && (
{/* Indian Exporters Gains */}
{exportGains.map((item, i) => (
{item.sector}
{item.current}% FREE
))}
{/* Indian Importers / EU Access */}
{importImpact.map((item, i) => (

{item.sector}

{item.note}
{item.current}% {item.post}%
))}

Critical staging periods apply. Auto parts and chemical reductions are phased over 5-10 years to protect domestic manufacturing ecosystems and allow for modernization.

)} {activeTab === 'compliance' && (
{/* NTBs */} {regulatoryBarriers.map((barr) => (
{barr.id} {barr.impact} Impact

{barr.title}

{barr.description}

))} {/* Certification Module */}

MODERN SELF-CERTIFICATION

Mechanism

REX System

One-time registration for Indian exporters replacing authority-issued certificates.

Requirement

Statement on Origin

Self-certified declaration directly on commercial invoices for faster clearance.

Auditability

5 Year Retention

Mandatory data retention for post-import verification by customs.

{/* IPR/Digital */}

IPR & Digital Trade

  • Recognition of India's Traditional Knowledge Digital Library (TKDL).
  • No mandatory source code disclosure for software exports.
  • Alignment of trademark and design protection standards.
)}
{/* Footer Branding */}
Strategic Trade Analysis Framework
Data based on Jan 27, 2026 Conclusion. Subject to final legal scrubbing and ratification.
); }; export default App;