diff --git a/public/images/team/adnan.jpg b/public/images/team/adnan.jpg new file mode 100644 index 0000000..752c2b9 Binary files /dev/null and b/public/images/team/adnan.jpg differ diff --git a/public/images/team/chris.jpg b/public/images/team/chris.jpg new file mode 100644 index 0000000..83246c8 Binary files /dev/null and b/public/images/team/chris.jpg differ diff --git a/public/images/team/kristof.jpg b/public/images/team/kristof.jpg new file mode 100644 index 0000000..e606b87 Binary files /dev/null and b/public/images/team/kristof.jpg differ diff --git a/src/app/page.tsx b/src/app/page.tsx index 9a1e6a6..06d9bf1 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,6 +11,7 @@ import { FadeInOnView } from '@/components/UI/FadeInOnView' import { About } from '@/components/home/About' import { Ventures } from '@/components/home/Ventures' import { Foundation } from '@/components/home/Foundation' +import { Team } from '@/components/home/Team' export default function Home() { return ( @@ -34,6 +35,10 @@ export default function Home() { + + + + diff --git a/src/components/home/Team.tsx b/src/components/home/Team.tsx new file mode 100644 index 0000000..fbdcf33 --- /dev/null +++ b/src/components/home/Team.tsx @@ -0,0 +1,78 @@ +import Image from 'next/image' +import { H2, PS } from '@/components/UI/Texts' +import { Button } from '@/components/Button' + +const members = [ + { + src: '/images/team/kristof.jpg', + alt: 'Kristof', + name: 'Kristof De Spiegeleer', + role: 'Co-Founder, CEO', + bio: + 'Kristof is a technologist, philosopher, and builder dedicated to creating systems that serve the common good, with a deep focus on open collaboration, self-sovereignty, and planetary resilience.', + }, + { + src: '/images/team/adnan.jpg', + alt: 'Adnan', + name: 'Adnan Fatayerji', + role: 'Telecom Strategic Relations', + bio: + 'Adnan is a systems thinker and venture architect focused on reimagining how digital systems serve people, bridging innovation and impact through scalable, grounded execution.', + }, + { + src: '/images/team/chris.jpg', + alt: 'Chris', + name: 'Chris Camponovo', + role: 'Director, Co-Founder of Zanzibar Digital Free Zone', + bio: + 'Christopher is a strategic advisor and legal thinker working at the intersection of law, governance, and international development, helping design resilient and future-aligned frameworks.', + }, +] + +export function Team() { + return ( +
+
+
+

+ Great Ventures Start with Supported People. +

+ + We invest in the human behind the ventures, because transformative companies grow from grounded, supported individuals. + + +
+
+
+ {members.map((member) => ( +
+
+
+ {member.alt} +
+
+

{member.name}

+

{member.role}

+
+

+ {member.bio} +

+
+
+
+
+ ))} +
+
+
+
+ ) +}