diff --git a/src/pages/About.tsx b/src/pages/About.tsx index 6ecf304..49dd92f 100644 --- a/src/pages/About.tsx +++ b/src/pages/About.tsx @@ -5,6 +5,10 @@ interface TeamMember { login: string; avatar_url: string; html_url: string; + name: string; + bio: string; + location: string; + company: string; } export function About() { @@ -96,21 +100,21 @@ export function About() { name="John Doe" role="Software Engineer" quote="Snigdha OS is the perfect balance between simplicity and power. I use it daily for my work." - avatarUrl="https://avatars.githubusercontent.com/u/1?v=4" // GitHub avatar URL + avatarUrl="https://avatars.githubusercontent.com/u/1?v=4" profileUrl="https://github.com/eshanized" /> @@ -118,7 +122,7 @@ export function About() { {/* History Section */}
-

Our History

+

Our History

- {/* Team Section */} + {/* Leadership Team Section */}

Leadership Team

{loading ? ( @@ -155,9 +159,12 @@ export function About() { {teamMembers.map((member) => ( ))} @@ -267,10 +274,16 @@ function TeamMemberCard({ name, image, profileUrl, + bio, + location, + company, }: { name: string; image: string; profileUrl: string; + bio: string; + location: string; + company: string; }) { return (
@@ -280,11 +293,14 @@ function TeamMemberCard({ className="w-32 h-32 rounded-full mx-auto mb-4 object-cover" />

{name}

+

{bio}

+

{location}

+

{company}

View Profile