2024-06-01 20:59:42 +03:00
|
|
|
import { DocumentTextIcon } from '@heroicons/react/24/outline';
|
2024-06-01 17:07:56 +03:00
|
|
|
import Logo from '../components/logo';
|
2024-06-01 20:59:42 +03:00
|
|
|
import TopicCard from '../components/topic_card';
|
2024-06-01 17:07:56 +03:00
|
|
|
|
2024-06-01 16:28:39 +03:00
|
|
|
const people = [
|
|
|
|
{
|
|
|
|
name: 'Andrei Banu',
|
|
|
|
role: 'UI/UX designer',
|
|
|
|
imageUrl:
|
2024-06-01 17:33:13 +03:00
|
|
|
'arch.png',
|
2024-06-01 16:28:39 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Ioan Cristian Chelaru',
|
|
|
|
role: 'UI/UX designer',
|
|
|
|
imageUrl:
|
2024-06-01 17:33:13 +03:00
|
|
|
'blahaj.avif',
|
2024-06-01 16:28:39 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Alexandru Gabriel Stan',
|
|
|
|
role: 'Back end developer',
|
|
|
|
imageUrl:
|
2024-06-01 17:33:13 +03:00
|
|
|
'alex.jpg',
|
2024-06-01 16:28:39 +03:00
|
|
|
},
|
|
|
|
// More people...
|
|
|
|
]
|
|
|
|
|
|
|
|
export default function Example() {
|
|
|
|
return (
|
|
|
|
<div className="sm:py-32">
|
|
|
|
<div
|
|
|
|
className="absolute inset-x-0 -top-40 -z-10 transform-gpu overflow-hidden blur-3xl sm:-top-80"
|
|
|
|
aria-hidden="true"
|
|
|
|
>
|
|
|
|
<div
|
|
|
|
className="relative left-[calc(50%-11rem)] aspect-[1155/678] w-[36.125rem] -translate-x-1/2 rotate-[30deg] bg-gradient-to-tr from-[#ff80b5] to-[#9089fc] opacity-30 sm:left-[calc(50%-30rem)] sm:w-[72.1875rem]"
|
|
|
|
style={{
|
|
|
|
clipPath:
|
|
|
|
'polygon(74.1% 44.1%, 100% 61.6%, 97.5% 26.9%, 85.5% 0.1%, 80.7% 2%, 72.5% 32.5%, 60.2% 62.4%, 52.4% 68.1%, 47.5% 58.3%, 45.2% 34.5%, 27.5% 76.7%, 0.1% 64.9%, 17.9% 100%, 27.6% 76.8%, 76.1% 97.7%, 74.1% 44.1%)',
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
</div>
|
2024-06-01 17:07:56 +03:00
|
|
|
<Logo/>
|
|
|
|
<div style={{paddingBottom: '100px'}}></div>
|
2024-06-01 16:28:39 +03:00
|
|
|
<div className="mx-auto grid max-w-7xl gap-x-8 gap-y-20 px-6 lg:px-8 xl:grid-cols-3">
|
|
|
|
<div className="max-w-2xl">
|
2024-06-01 17:11:32 +03:00
|
|
|
<h2 className="text-3xl font-bold tracking-tight text-gray-200 sm:text-4xl">Meet our developers</h2>
|
2024-06-01 16:28:39 +03:00
|
|
|
<p className="mt-6 text-lg leading-8 text-gray-200">
|
2024-06-01 17:11:32 +03:00
|
|
|
We are a group of passionate middle schoolers that got togather to hopefully make a difference in the world
|
2024-06-01 16:28:39 +03:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<ul role="list" className="grid gap-x-8 gap-y-12 sm:grid-cols-2 sm:gap-y-16 xl:col-span-2">
|
|
|
|
{people.map((person) => (
|
|
|
|
<li key={person.name}>
|
|
|
|
<div className="flex items-center gap-x-6">
|
|
|
|
<img className="h-16 w-16 rounded-full" src={person.imageUrl} alt="" />
|
|
|
|
<div>
|
|
|
|
<h3 className="text-base font-semibold leading-7 tracking-tight text-gray-200">{person.name}</h3>
|
|
|
|
<p className="text-sm font-semibold leading-6 text-indigo-200">{person.role}</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
))}
|
|
|
|
</ul>
|
|
|
|
</div>
|
2024-06-01 18:03:25 +03:00
|
|
|
<br></br>
|
2024-06-01 20:59:42 +03:00
|
|
|
<div
|
|
|
|
style={{display:"flex", alignItems: 'center', justifyContent: 'center', marginLeft: "40px", marginRight: "40px"}}
|
|
|
|
>
|
|
|
|
<a
|
|
|
|
href="https://git.gra.phite.ro/BlahajTeam/next-app"
|
|
|
|
className="mt-10 block rounded-md bg-blue-500 text-base text-center text-sm font-semibold text-white shadow-sm hover:bg-indigo-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600"
|
|
|
|
style={{maxWidth: '250px', paddingLeft: '50px', paddingRight: '50px', paddingTop: '20px', paddingBottom: '20px', alignSelf: 'center'}}
|
|
|
|
>
|
|
|
|
<DocumentTextIcon></DocumentTextIcon>
|
|
|
|
Source Code
|
|
|
|
</a>
|
|
|
|
</div>
|
2024-06-01 16:28:39 +03:00
|
|
|
<div
|
|
|
|
className="absolute inset-x-0 top-[calc(100%-13rem)] -z-10 transform-gpu overflow-hidden blur-3xl sm:top-[calc(100%-30rem)]"
|
|
|
|
aria-hidden="true"
|
|
|
|
>
|
|
|
|
<div
|
|
|
|
className="relative left-[calc(50%+3rem)] aspect-[1155/678] w-[36.125rem] -translate-x-1/2 bg-gradient-to-tr from-[#ff80b5] to-[#9089fc] opacity-30 sm:left-[calc(50%+36rem)] sm:w-[72.1875rem]"
|
|
|
|
style={{
|
|
|
|
clipPath:
|
|
|
|
'polygon(74.1% 44.1%, 100% 61.6%, 97.5% 26.9%, 85.5% 0.1%, 80.7% 2%, 72.5% 32.5%, 60.2% 62.4%, 52.4% 68.1%, 47.5% 58.3%, 45.2% 34.5%, 27.5% 76.7%, 0.1% 64.9%, 17.9% 100%, 27.6% 76.8%, 76.1% 97.7%, 74.1% 44.1%)',
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|