import React, { useMemo, useState } from "react"; // One-file personal website for Sanjay Nigam // ✅ React + TailwindCSS // ✅ Mobile-first, elegant, fast // ✅ Swap text in the profile object const profile = { name: "Sanjay Nigam", tagline: "Builder • Investor • Storyteller", elevator: "Founder of the Fashion Entrepreneur Fund (FEF). Championing India's ignored heroes — karigars, creators, and founders — and building a $10B+ fashion & entrepreneurship ecosystem.", headshot: null, // drop an image URL when ready email: "sanjaynigamoffice@gmail.com", location: "New Delhi, India", socials: [ { label: "Instagram", href: "#" }, { label: "LinkedIn", href: "#" }, { label: "YouTube", href: "#" }, { label: "X / Twitter", href: "#" }, ], highlight_metrics: [ { k: "₹540 Cr+", v: "Current Group Valuation (FEF)" }, { k: "₹250 Cr+", v: "Portfolio Turnover" }, { k: "40 Cr", v: "On-screen Funding (PTGR)" }, { k: "10B+", v: "Ecosystem Vision (USD)" }, ], ventures: [ { name: "Fashion Entrepreneur Fund (FEF)", role: "Founder", blurb: "India's first fund designed to back the builders of fashion & allied industries — from artisans to D2C brands to fashion-tech.", ctas: [ { label: "Explore FEF", href: "#" }, { label: "Apply for Funding", href: "#apply" }, ], }, { name: "Pitch To Get Rich (PTGR)", role: "Creator & Host (with Dharmatic)", blurb: "A world-class funding show where real founders meet real capital and mentorship.", ctas: [ { label: "Watch Trailer", href: "#ptgr" }, { label: "Be a Partner", href: "#partners" }, ], }, { name: "Rentify", role: "Founder", blurb: "India's first landlord & property review platform bringing rental transparency for homes, shops, and commercial spaces.", ctas: [{ label: "See the Vision", href: "#rentify" }], }, ], speaking: { blurb: "I speak about creative economies, building movements, funding reality vs perception, and the discipline behind overnight success.", topics: [ "From Grit to Scale: India’s Creative Economy", "The Ignored Heroes: Karigars, Creators & Founders", "Show, Don't Show Off: Social Media as a Learning Tool", "Raising Capital without Losing Your Soul", ], cta: { label: "Book Me for a Talk", href: "#contact" }, }, book: { title: "Mental Masturbation", line: "A contemporary fiction exploring ambition, identity, and the chaos of modern hustle.", status: "Upcoming", }, press: [ { outlet: "Press/Media Kit", summary: "Download headshots, bios, and brand assets.", href: "#presskit", }, { outlet: "Interviews", summary: "Long-form conversations on building FEF, PTGR, and the 'Most Ignored Man' narrative.", href: "#interviews", }, { outlet: "Speaking", summary: "Keynotes at universities, industry forums, and startup summits.", href: "#speaking", }, ], }; function cx(...s) { return s.filter(Boolean).join(" "); } function Pill({ children }) { return ( {children} ); } function Stat({ k, v }) { return (
{k}
{v}
); } function Section({ id, title, eyebrow, children, className }) { return (
{eyebrow && (
{eyebrow}
)} {title && (

{title}

)} {children}
); } function NavLink({ href, children }) { return ( {children} ); } function VentureCard({ v }) { return (
{v.name}
{v.role}

{v.blurb}

{v.ctas?.map((c) => ( {c.label} ))}
); } export default function SanjayNigamSite() { const [dark, setDark] = useState(true); return (
{/* NAV */}
Sanjay Nigam
Book a Talk
{/* HERO */}
The Most Ignored Man — Until Results Arrive

{profile.name}

{profile.tagline}

{profile.elevator}

{profile.highlight_metrics.map((m) => ( ))}
{profile.headshot ? ( Sanjay Nigam ) : (
Upload headshot
)}
{/* ABOUT */}
Mentorship × Discipline
Talent is everywhere, discipline is rare. I mentor founders to build cadence, not chaos.
Social as a Classroom
Use social media to learn, not to posture. Ship work, seek feedback, repeat.
From India, For the World
Building platforms that scale Indian creativity globally — with real economics.
{/* VENTURES */}
{profile.ventures.map((v) => ( ))}
{/* PTGR FEATURE */}

India's boldest funding show — where grit meets capital.

Real founders. Real money. Real mentorship. Built with Dharmatic Entertainment — proudly from India.

Watch Trailer
Trailer placeholder — drop your video embed here.
{/* SPEAKING */}

{profile.speaking.blurb}

    {profile.speaking.topics.map((t) => (
  • {t}
  • ))}
{profile.speaking.cta.label}
{/* BOOK */}
{profile.book.status}

{profile.book.line}

Want early access? Join the reader list below.
{/* PRESS */}
{profile.press.map((p) => (
{p.outlet}
{p.summary}
))}
{/* NEWSLETTER */}

Monthly notes on building, fashion, creators, and the reality behind the headlines.

{/* CONTACT */}
Email
{profile.email}
Location
{profile.location}
Social
{profile.socials.map((s) => ( {s.label} ))}
Speaking / Partnerships

For keynotes, fireside chats, media, or brand partnerships, share your brief and dates.

Send Brief
{/* FOOTER */}
); }