-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlanguages.txt
98 lines (94 loc) · 3.89 KB
/
languages.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
interface TeamMember {
name: string;
image: string;
}
const teamMembers: TeamMember[] = [
{
name: 'Lindsay Walton',
image: 'https://images.unsplash.com/photo-1494790108377-be9c29b29330?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80',
},
{
name: 'Courtney Henry',
image: 'https://images.unsplash.com/photo-1438761681033-6461ffad8d80?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80',
},
{
name: 'Tom Cook',
image: 'https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80',
},
{
name: 'Whitney Francis',
image: 'https://images.unsplash.com/photo-1517841905240-472988babdf9?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80',
},
{
name: 'Leonard Krasner',
image: 'https://images.unsplash.com/photo-1500648767791-00dcc994a43e?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80',
},
{
name: 'Floyd Miles',
image: 'https://images.unsplash.com/photo-1519345182560-3f2917c472ef?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80',
},
{
name: 'Sarah Johnson',
image: 'https://images.unsplash.com/photo-1534528741775-53994a69daeb?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80',
},
{
name: 'Michael Chen',
image: 'https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80',
},
{
name: 'Emma Wilson',
image: 'https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80',
},
{
name: 'David Park',
image: 'https://images.unsplash.com/photo-1506794778202-cad84cf45f1d?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80',
},
{
name: 'Rachel Green',
image: 'https://images.unsplash.com/photo-1488426862026-3ee34a7d66df?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80',
},
{
name: 'James Rodriguez',
image: 'https://images.unsplash.com/photo-1463453091185-61582044d556?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80',
},
];
export default function Home() {
return (
<div className="min-h-screen bg-gray-100 py-12">
<div className="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
<div className="text-center max-w-2xl mx-auto mb-12">
<h2 className="text-3xl font-bold tracking-tight text-gray-900 sm:text-4xl">
Our team
</h2>
<p className="mt-4 text-lg leading-8 text-gray-600">
We're a dynamic group of individuals who are passionate about what we do.
</p>
</div>
<div className="max-w-5xl mx-auto">
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-x-10 gap-y-12 justify-items-center">
{teamMembers.map((member) => (
<div key={member.name} className="relative group w-[250px]">
<div className="relative h-[250px] w-full overflow-hidden rounded-lg">
<img
src={member.image}
alt={member.name}
className="h-full w-full object-cover transition-transform duration-300 group-hover:scale-110"
/>
{/* Gradient overlay */}
<div className="absolute inset-0 bg-gradient-to-t from-black/70 via-black/50 to-transparent opacity-80 group-hover:opacity-90 transition-opacity duration-300" />
{/* Centered name with enhanced effects */}
<div className="absolute inset-0 flex items-center justify-center">
<h3 className="text-lg font-semibold text-white group-hover:scale-105 transition-transform duration-300 text-center
[text-shadow:_0_1px_2px_rgb(0_0_0_/_40%)] group-hover:[text-shadow:_0_2px_4px_rgb(0_0_0_/_60%)]">
{member.name}
</h3>
</div>
</div>
</div>
))}
</div>
</div>
</div>
</div>
);
}