import React from 'react'; import { Infinity, Linkedin } from 'lucide-react'; // --- Data --- const founders = [ { id: 1, name: "Jaideep Yadav", role: "Partner", image: "https://framerusercontent.com/images/goqAaGyjFcgiX218wutwJJMWRo.jpg?width=800&height=800", linkedin: "https://in.linkedin.com/in/jaideepyadav", bio: "Entrepreneur and early-stage investor who has built and scaled ventures across fintech, insurtech, and crypto. He has a track record of driving multi-million-dollar revenues, managing global expansions, and investing in passionate founders, and is committed to helping visionary entrepreneurs scale and succeed." }, { id: 2, name: "Nikunj Jain", role: "Partner", image: "https://framerusercontent.com/images/EInuAqDZ6EzJD87i1elbjBMH9E.png?width=646&height=644", linkedin: "https://in.linkedin.com/in/nikunjjain1", bio: "A serial entrepreneur, angel investor, and founder who has built 4 ventures and backed 60+ start-ups over the last decade. A Forbes 30 Under 30 honoree, passionate about helping visionary founders scale their businesses and successfully raise Series A/B/C rounds." } ]; // --- Components --- const Header = () => ( ); const Footer = () => ( ); const FounderCard = ({ founder }) => { return (
{/* Top Row: Avatar + Name + LinkedIn */}
{founder.name}

{founder.name}

{founder.role}

{/* Bio */}

{founder.bio}

); }; export default function App() { return (
{/* Hero Section */}

My Creators

They are founders and angel investors themselves, knowing the intricacies of fundraising inside out. Unparalleled expertise from those who do this for a living.

{/* Founders Grid */}
{founders.map((founder) => ( ))}
{/* Footer */}
); }