import Link from 'next/link' import { getAllPeopleDataSync, PersonData } from '@/lib/peopleData' // Function to convert name to URL slug function nameToSlug(name: string): string { // Convert to lowercase and replace spaces with underscores return name.replace(/\s+/g, '_').toLowerCase() } export function PeopleHero() { const people = getAllPeopleDataSync() return (

Our team

We're a dynamic group of individuals who are passionate about what we do and dedicated to delivering the best results for our startups.

) }