Skip to content

Commit 645be93

Browse files
feat: Update team section with new member details and improve layout
1 parent 91d3513 commit 645be93

File tree

1 file changed

+15
-69
lines changed

1 file changed

+15
-69
lines changed

components/DashboardV2/TeamSection.tsx

Lines changed: 15 additions & 69 deletions
Original file line numberDiff line numberDiff line change
@@ -23,79 +23,25 @@ interface SocialNetworkProps {
2323
}
2424
export const TeamSection = () => {
2525
const teamList: TeamProps[] = [
26-
{
27-
imageUrl: "https://i.pravatar.cc/250?img=58",
28-
firstName: "Leo",
29-
lastName: "Miranda",
30-
positions: ["Vue Fronted Developer", "Creator Of This Website"],
31-
socialNetworks: [
32-
{
33-
name: "LinkedIn",
34-
url: "https://www.linkedin.com/in/leopoldo-miranda/",
35-
},
36-
{
37-
name: "Github",
38-
url: "https://github.com/leoMirandaa",
39-
},
40-
{
41-
name: "X",
42-
url: "https://x.com/leo_mirand4",
43-
},
44-
],
45-
},
4626
{
4727
imageUrl:
48-
"https://images.unsplash.com/photo-1534528741775-53994a69daeb?q=80&w=1528&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D",
49-
firstName: "Elizabeth",
50-
lastName: "Moore",
51-
positions: ["UI/UX Designer"],
28+
"https://avatars.githubusercontent.com/u/115717039?s=600&u=c1ff8fbf007a7a2abc31760eac1efd77cb01060e&v=4",
29+
firstName: "Yash K.",
30+
lastName: "Saini",
31+
positions: ["Lead Developer", "Designer"],
5232
socialNetworks: [
5333
{
5434
name: "LinkedIn",
55-
url: "https://www.linkedin.com/in/leopoldo-miranda/",
35+
url: "https://www.linkedin.com/in/yashksaini/",
5636
},
5737
{
5838
name: "X",
59-
url: "https://x.com/leo_mirand4",
60-
},
61-
],
62-
},
63-
{
64-
imageUrl:
65-
"https://images.unsplash.com/photo-1527980965255-d3b416303d12?q=80&w=1760&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D",
66-
firstName: "David",
67-
lastName: "Diaz",
68-
positions: ["Machine Learning Engineer", "TensorFlow Tinkerer"],
69-
socialNetworks: [
70-
{
71-
name: "LinkedIn",
72-
url: "https://www.linkedin.com/in/leopoldo-miranda/",
73-
},
74-
{
75-
name: "Github",
76-
url: "https://github.com/leoMirandaa",
77-
},
78-
],
79-
},
80-
{
81-
imageUrl:
82-
"https://images.unsplash.com/photo-1573497161161-c3e73707e25c?q=80&w=1587&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D",
83-
firstName: "Sarah",
84-
lastName: "Robinson",
85-
positions: ["Cloud Native Developer", " Kubernetes Orchestrator"],
86-
socialNetworks: [
87-
{
88-
name: "LinkedIn",
89-
url: "https://www.linkedin.com/in/leopoldo-miranda/",
39+
url: "https://x.com/yash_k_saini",
9040
},
9141
{
9242
name: "Github",
93-
url: "https://github.com/leoMirandaa",
94-
},
95-
{
96-
name: "X",
97-
url: "https://x.com/leo_mirand4",
98-
},
43+
url: "https://github.com/yashksaini-coder",
44+
}
9945
],
10046
},
10147
];
@@ -111,18 +57,18 @@ export const TeamSection = () => {
11157
};
11258

11359
return (
114-
<section id="team" className="container px-3 mx-auto lg:w-[75%] py-24 sm:py-32">
60+
<section id="team" className="container px-3 mx-auto lg:w-[75%] py-12 sm:py-32">
11561
<div className="text-center mb-8">
116-
<h2 className="text-lg text-primary text-center mb-2 tracking-wider">
62+
{/* <h2 className="text-lg text-primary text-center mb-2 tracking-wider">
11763
Team
118-
</h2>
64+
</h2> */}
11965

12066
<h2 className="text-3xl md:text-4xl text-center font-bold">
121-
The Company Dream Team
67+
The Team
12268
</h2>
12369
</div>
12470

125-
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-8">
71+
<div className="place-items-center">
12672
{teamList.map(
12773
(
12874
{ imageUrl, firstName, lastName, positions, socialNetworks },
@@ -137,8 +83,8 @@ export const TeamSection = () => {
13783
<Image
13884
src={imageUrl}
13985
alt=""
140-
width={300}
141-
height={300}
86+
width={400}
87+
height={400}
14288
className="w-full aspect-square object-cover saturate-0 transition-all duration-200 ease-linear size-full group-hover/hoverimg:saturate-100 group-hover/hoverimg:scale-[1.01]"
14389
/>
14490
</div>

0 commit comments

Comments
 (0)