import { Link } from 'react-router-dom' import { motion } from 'framer-motion' import { useState, useEffect } from 'react' import { ShieldCheck, ArrowRight, TrendingUp, Target, Crosshair, Users, Landmark, Briefcase, UserCheck, PieChart } from 'lucide-react' const PitchBackground = () => (
) const AUDIENCES = [ { icon: , title: "Directors of Football", desc: "Validate transfer ceilings and protect club liquidity." }, { icon: , title: "Head Scouts", desc: "Back the 'eye test' with unshakeable performance data." }, { icon: , title: "Financial Officers", desc: "Model 5-year FFP impact before signing the contract." }, { icon: , title: "Elite Agents", desc: "Benchmark client value against live market benchmarks." }, { icon: , title: "Investment Groups", desc: "De-risk acquisitions with high-fidelity ROI projections." }, ] export default function Landing() { const [evalCount, setEvalCount] = useState(84); useEffect(() => { const stored = localStorage.getItem('fv_usage_count'); const localUses = stored ? parseInt(stored, 10) : 0; setEvalCount(84 + localUses); }, []); const STATS = [ { value: evalCount.toString(), label: 'Transfers Evaluated' }, { value: '£14.2m', label: 'Avg. Overpay Avoided' }, { value: 'PL-Sync', label: 'Market Intelligence' }, { value: '100%', label: 'PSR Compliance' }, ] return (
{/* ── Cinematic Hero ────────────────────────────────────────────────── */}
🏆 The Gold Standard in Transfer Intelligence

Own the Negotiation.
Master the Market.

Stop guessing. Start quantifying. The definitive platform for quantifying the true intrinsic value of world-class talent and eliminating overpayment risk.

Launch Intelligence Engine
Premier League Intelligence
{/* ── Financial Stats ───────────────────────────────────────────────── */}
{STATS.map(({ value, label }, i) => (
{value}
{label}
))}
{/* ── Target Audience ───────────────────────────────────────────────── */}

Built for the Decision Makers

Empowering the most critical roles in the multi-billion pound football industry.

{AUDIENCES.map((item, i) => (
{item.icon}

{item.title}

{item.desc}

))}
{/* ── Value Proposition Cards ───────────────────────────────────────── */}

Intrinsic Valuation

Isolate pure performance metrics from market noise to identify the true ceiling price of any asset.

Live Market Pulse

Real-time newsroom scraping for durability, form, and agent leverage to adjust valuations on the fly.

Board-Ready Compliance

Instantly calculate amortisation hits and ensure every bid stays within PSR & FFP safety zones.

{/* ── Enterprise CTA ────────────────────────────────────────────────── */}

Maximize your net spend.

Join the elite recruitment departments using data to win the transfer window.

Start Free Evaluation
) }