Teams Section Four
navdeep-singh/teams-section-fourFreeBlock
Teams Section Four — Teams block.
Install it
npx shadcn@latest add https://ui.navdeepsingh.dev/r/teams-section-four.jsonSource
1/* eslint-disable @next/next/no-img-element */23import { Badge } from '@/components/ui/badge'45const members = [6 {7 name: 'Liam Brown',8 role: 'Founder - CEO',9 avatar: 'https://p1r7j2dwef.ufs.sh/f/nrPqHGLL1RTlH4NUrIqHjv3VPCtBSMksEJOn7pmfxyc9IoU5',10 },11 {12 name: 'Elijah Jones',13 role: 'Co-Founder - CTO',14 avatar: 'https://p1r7j2dwef.ufs.sh/f/nrPqHGLL1RTl81tMhO4dwU2oJkmKaujTg9FMAr3QiGROq5bE',15 },16 {17 name: 'Isabella Garcia',18 role: 'Sales Manager',19 avatar: 'https://p1r7j2dwef.ufs.sh/f/nrPqHGLL1RTlnj8ad4LL1RTlFOStU5Vx6bKDsZupeXgyGkhM',20 },21 {22 name: 'Henry Lee',23 role: 'UX Engineer',24 avatar: 'https://p1r7j2dwef.ufs.sh/f/nrPqHGLL1RTlKywRt8Sa4eSEgVXynrIRWAk3NL9mFjvOTM0B',25 },26]2728const bentoSpans = [29 'md:col-span-2 md:row-span-2',30 'md:col-span-2 md:row-span-1',31 'md:col-span-1 md:row-span-1',32] as const3334export default function TeamSectionFour() {35 return (36 <section className="bg-gray-50 py-16 md:py-32 dark:bg-transparent">37 <div className="mx-auto max-w-6xl px-4">38 <div className="mb-12 flex flex-col items-start gap-4 md:mb-16">39 <Badge variant="ghost" className="text-sm text-muted-foreground uppercase">40 The Team41 </Badge>4243 <div className="grid grid-cols-1 gap-6 md:grid-cols-2">44 <h1 className="text-xl md:text-4xl">Join a global team dedicated to their craft</h1>45 <p className="mt-0 text-left text-muted-foreground md:mt-6">46 We work with incredible talent from all around the world, each offering unique skills47 and perspectives. Joining us means you'll collaborate with industry leaders,48 learn from the best, and continuously grow.49 </p>50 </div>51 </div>5253 <div className="grid grid-cols-1 gap-6 md:grid-cols-4 md:grid-rows-3">54 {members.map((member, index) => {55 return (56 <div57 key={member.name}58 className={`group relative overflow-hidden rounded-xl bg-muted ring-1 ring-border ${bentoSpans[index]}`}59 >60 <img61 src={member.avatar}62 alt={member.name}63 className="h-full w-full object-cover object-top grayscale transition-[filter] duration-300 group-hover:grayscale-0 motion-reduce:transition-none"64 />65 </div>66 )67 })}68 </div>69 </div>70 </section>71 )72}
What it pulls in
Other registry items
Files it writes
More from navdeep-singh
All 64 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| Blog Section Oneblog-section-one | navdeep-singh | Blocks | Free | 1 dep | |
| Contact Section Fourcontact-section-four | navdeep-singh | Blocks | Free | no deps | |
| Contact Section Onecontact-section-one | navdeep-singh | Blocks | Free | 1 dep | |
| Contact Section Threecontact-section-three | navdeep-singh | Blocks | Free | no deps | |
| Contact Section Twocontact-section-two | navdeep-singh | Blocks | Free | no deps | |
| Content Section Fourcontent-section-four | navdeep-singh | Blocks | Free | 1 dep | |
| Content Section Onecontent-section-one | navdeep-singh | Blocks | Free | 1 dep | |
| Content Section Threecontent-section-three | navdeep-singh | Blocks | Free | 2 deps |
