1- import Image from " next/image" ;
1+ import Image from ' next/image' ;
22
33const teamMembers = [
4- {
5- name : " John Doe" ,
6- role : " CEO" ,
7- image : " /svg/TestImage.svg" ,
8- bio : " John is the visionary behind our company, leading strategy and growth with over 15 years of experience in tech and business." ,
9- } ,
10- {
11- name : " Jane Smith" ,
12- role : " CTO" ,
13- image : " /svg/TestImage.svg" ,
14- bio : " Jane drives our tech innovations, overseeing product development, system architecture, and engineering operations." ,
15- } ,
16- {
17- name : " Mike Johnson" ,
18- role : " Head of Marketing" ,
19- image : " /svg/TestImage.svg" ,
20- bio : " Mike leads our marketing team, crafting campaigns that connect with our users and expand our brand reach globally." ,
21- } ,
22- {
23- name : " Linda Brown" ,
24- role : " Product Manager" ,
25- image : " /svg/TestImage.svg" ,
26- bio : " Linda coordinates cross-functional teams to deliver exceptional products that meet user needs and market trends." ,
27- } ,
28- {
29- name : " Chris Evans" ,
30- role : " Lead Designer" ,
31- image : " /svg/TestImage.svg" ,
32- bio : " Chris brings designs to life with a focus on user-centered experiences, UI consistency, and visual storytelling." ,
33- } ,
34- {
35- name : " Sara Lee" ,
36- role : " Operations Manager" ,
37- image : " /svg/TestImage.svg" ,
38- bio : " Sara ensures smooth daily operations and team efficiency, supporting growth with systems and processes that scale." ,
39- } ,
4+ {
5+ name : ' John Doe' ,
6+ role : ' CEO' ,
7+ image : ' /svg/TestImage.svg' ,
8+ bio : ' John is the visionary behind our company, leading strategy and growth with over 15 years of experience in tech and business.' ,
9+ } ,
10+ {
11+ name : ' Jane Smith' ,
12+ role : ' CTO' ,
13+ image : ' /svg/TestImage.svg' ,
14+ bio : ' Jane drives our tech innovations, overseeing product development, system architecture, and engineering operations.' ,
15+ } ,
16+ {
17+ name : ' Mike Johnson' ,
18+ role : ' Head of Marketing' ,
19+ image : ' /svg/TestImage.svg' ,
20+ bio : ' Mike leads our marketing team, crafting campaigns that connect with our users and expand our brand reach globally.' ,
21+ } ,
22+ {
23+ name : ' Linda Brown' ,
24+ role : ' Product Manager' ,
25+ image : ' /svg/TestImage.svg' ,
26+ bio : ' Linda coordinates cross-functional teams to deliver exceptional products that meet user needs and market trends.' ,
27+ } ,
28+ {
29+ name : ' Chris Evans' ,
30+ role : ' Lead Designer' ,
31+ image : ' /svg/TestImage.svg' ,
32+ bio : ' Chris brings designs to life with a focus on user-centered experiences, UI consistency, and visual storytelling.' ,
33+ } ,
34+ {
35+ name : ' Sara Lee' ,
36+ role : ' Operations Manager' ,
37+ image : ' /svg/TestImage.svg' ,
38+ bio : ' Sara ensures smooth daily operations and team efficiency, supporting growth with systems and processes that scale.' ,
39+ } ,
4040] ;
4141
42-
4342const TeamOverview = ( ) => {
44- return ( < section className = "text-white flex flex-col items-start gap-10 justify-center py-16 px-8 md:px-16 " >
45- < h3 className = "text-3xl font-bold text-white" > Team Overview</ h3 >
43+ return (
44+ < section className = "text-white flex flex-col items-start gap-10 justify-center py-16 px-8 md:px-16 " >
45+ < h3 className = "text-3xl font-bold text-white" > Team Overview</ h3 >
4646
47- < div className = "grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8 w-full" >
48- { teamMembers . map ( ( member , index ) => (
49- < div
50- key = { index }
51- className = "bg-[#050512] hover:bg-gray-700 transition-colors p-6 rounded-2xl shadow-xl border border-gray-700"
52- >
53- < div className = "flex items-center space-x-4 mb-4" >
54- < Image
55- src = { member . image }
56- alt = { member . name }
57- width = { 48 }
58- height = { 48 }
59- className = "rounded-full border border-gray-600"
60- />
61- < div >
62- < h4 className = "text-lg font-semibold" > { member . name } </ h4 >
63- < p className = "text-sm text-gray-300 italic" > { member . role } </ p >
64- </ div >
65- </ div >
66- < p className = "text-sm text-gray-400" > { member . bio } </ p >
67- </ div >
68- ) ) }
69- </ div >
47+ < div className = "grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8 w-full" >
48+ { teamMembers . map ( ( member , index ) => (
49+ < div
50+ key = { index }
51+ className = "bg-[#050512] hover:bg-gray-700 transition-colors p-6 rounded-2xl shadow-xl border border-gray-700"
52+ >
53+ < div className = "flex items-center space-x-4 mb-4" >
54+ < Image
55+ src = { member . image }
56+ alt = { member . name }
57+ width = { 48 }
58+ height = { 48 }
59+ className = "rounded-full border border-gray-600"
60+ />
61+ < div >
62+ < h4 className = "text-lg font-semibold" > { member . name } </ h4 >
63+ < p className = "text-sm text-gray-300 italic" > { member . role } </ p >
64+ </ div >
65+ </ div >
66+ < p className = "text-sm text-gray-400" > { member . bio } </ p >
67+ </ div >
68+ ) ) }
69+ </ div >
7070
71- < p className = "text-sm text-gray-400 max-w-3xl" >
72- Our team is made up of passionate individuals committed to delivering excellence across every department. From engineering to design, strategy to operations — we work together to bring the vision to life.
73- </ p >
74- </ section > ) ;
75- }
71+ < p className = "text-sm text-gray-400 max-w-3xl" >
72+ Our team is made up of passionate individuals committed to delivering
73+ excellence across every department. From engineering to design, strategy
74+ to operations — we work together to bring the vision to life.
75+ </ p >
76+ </ section >
77+ ) ;
78+ } ;
7679
77- export default TeamOverview ;
80+ export default TeamOverview ;
0 commit comments