// v4-pages-home.jsx — Home and Perspective pages (Awesomic skin) const { useState } = React; const _C = window.AdvC; function HomePage({ onNavigate }) { const doors = [ { audience: 'Execution Partners', desc: 'Companies with capability seeking the right contract.', link: 'How we work', page: 'what-we-do', tab: 0 }, { audience: 'Project Holders', desc: 'Mandate holders seeking verified, structured delivery partnerships.', link: 'How we work', page: 'what-we-do', tab: 1 }, { audience: 'Fund Managers & Relevant Bodies', desc: 'Providing accountable execution to administrators and relevant authorities.', link: 'How we work', page: 'what-we-do', tab: 2 }, ]; return (
{/* ── HERO ──────────────────────────────────────────────────────── */}
g

The problem is not one of execution. It is one of structure.

We exist to close that gap.

{/* ── KPI CARDS ── */}
{[ { num: '37+', label: 'Verified companies' }, { num: '9', label: 'Sectors covered' }, { num: '₹43L Cr', label: 'Infrastructure pipeline' }, { num: '88+', label: 'Engaged work orders' }, ].map((k, i) => (

{k.num}

{k.label}

))}
Strategy · Advisory · Management consulting
{/* ── WHAT WE DO ──────────────────────────────────────────────────── */}
A strategy and management consulting practice working at the intersection of project mandate and ground-level delivery. We advise companies on how to access, qualify for, and win government work. We advise fund managers and project holders on how to structure partnerships with companies that can actually deliver.
{/* ── WHO WE WORK WITH ────────────────────────────────────────────── */}
{doors.map((d, i) => (

{d.audience}

{d.desc} onNavigate(d.page, d.tab)}>{d.link}
))}
{/* ── SIX-PHASE TEASER ────────────────────────────────────────────── */}
Six phases. One outcome. Delivery. Every engagement follows a structured progression — from company intelligence to project closure. onNavigate('how-we-work')}>See the full methodology
{[ { n: '01', name: 'Company Intelligence', out: 'Capability Dossier' }, { n: '02', name: 'Pipeline Intelligence', out: 'Eligibility-Screened Report' }, { n: '03', name: 'Bid Architecture', out: 'Submission-Ready Package' }, { n: '04', name: 'Transaction Facilitation', out: 'MoU / Teaming Agreement' }, { n: '05', name: 'Post-Award Advisory', out: 'Monthly Monitoring Report' }, { n: '06', name: 'Project Closure', out: 'Project Closure Dossier' }, ].map((ph, i, arr) => (
{ph.n} {ph.name} {ph.out}
))}
{/* ── NETWORK TEASER (dark) ───────────────────────────────────────── */}
37+ Companies
A verified network built over years, not assembled for a pitch. Audited financials. Confirmed registrations. Documented delivery. Not a database — a structured partner ecosystem. onNavigate('network')} dark>Explore the network
{/* ── CLOSING CTA ─────────────────────────────────────────────────── */}
The opportunity is already there. Confidential engagements by referral and direct introduction only. onNavigate('contact')}>Start a conversation
); } Object.assign(window, { HomePage });