-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cc63b5b
commit bcaedf1
Showing
1 changed file
with
44 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,47 @@ | ||
import TeamGeneralHero from "@/components/landing/team/GeneralHero"; | ||
import Image from "next/image"; | ||
|
||
const LandingPage = () => <TeamGeneralHero />; | ||
const members = [ | ||
{ name: "Dorian Moy", title: "Lead Backend", image: "https://github.com/Croos3r.png" }, | ||
{ name: "Florian Lauch", title: "Lead Workers", image: "https://github.com/EdenComp.png" }, | ||
{ name: "Tom Bariteau", title: "Frontend Developer", image: "https://github.com/Tomi-Tom.png" }, | ||
{ name: "Axel Denis", title: "Mobile Developer", image: "https://github.com/axel-denis.png" }, | ||
{ | ||
name: "Reza Rahemtola", | ||
title: "Lead Frontend & DevOps", | ||
image: "https://github.com/RezaRahemtola.png", | ||
}, | ||
]; | ||
|
||
const LandingPage = () => ( | ||
<section className="min-h-screen w-full py-12 md:py-24 lg:py-32"> | ||
<div className="container px-4 md:px-6 mx-auto"> | ||
<div className="flex flex-col items-center space-y-4 text-center"> | ||
<h1 className="text-3xl font-bold tracking-tighter sm:text-5xl xl:text-6xl/none">Meet Our Team</h1> | ||
<p className="mx-auto max-w-[700px] text-zinc-500 md:text-xl dark:text-zinc-400"> | ||
We are a group of passionate individuals committed to our work. | ||
</p> | ||
</div> | ||
<div className="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 xl:grid-cols-5 gap-8 mt-10 justify-items-center"> | ||
{members.map((member) => ( | ||
<div className="flex flex-col items-center space-y-4" key={member.name}> | ||
<Image | ||
alt="Team member" | ||
className="rounded-full object-cover object-center" | ||
height="200" | ||
src={member.image} | ||
style={{ | ||
aspectRatio: "200/200", | ||
objectFit: "cover", | ||
}} | ||
width="200" | ||
/> | ||
<h2 className="text-lg font-semibold">{member.name}</h2> | ||
<p className="text-sm text-zinc-500 dark:text-zinc-400">{member.title}</p> | ||
</div> | ||
))} | ||
</div> | ||
</div> | ||
</section> | ||
); | ||
|
||
export default LandingPage; |