import { ClipboardDocumentListIcon, DocumentTextIcon } from '@heroicons/react/24/outline'; import Logo from '../components/logo'; import TopicCard from '../components/topic_card'; import LinkButton from '../components/link-button'; {/*Index of people and their respective image and title*/} const people = [ { name: 'Andrei Banu', role: 'UI/UX designer', imageUrl: 'arch.png', email: 'mailto:child1.andy@gmail.com' }, { name: 'Ioan Cristian Chelaru', role: 'UI/UX designer', imageUrl: 'blahaj.avif', email: 'mailto:iccjoc@proton.me' }, { name: 'Alexandru Gabriel Stan', role: 'Backend & UI developer', imageUrl: 'alex.png', email: 'mailto:alex.stan.2010@proton.me' }, // More people... ] export default function Example() { return (
{/*Background visuals*/}