File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ const awards = [
2+ { name : 'EDU Engineering Day Champion' , year : '2020' , description : 'Hackathon Winner' } ,
3+ {
4+ name : 'Campus Ambassador Program 2020' ,
5+ year : '2020' ,
6+ description : 'bdapps - National Appstore of Bangladesh (A concern of Robi Axiata Limited)'
7+ } ,
8+ {
9+ name : 'First Class First Position' ,
10+ year : '2023-25' ,
11+ description : 'M.Sc. in Computer Science & Mathematics (1st & 2nd Semester)'
12+ } ,
13+ ] ;
14+
15+ const Awards = ( ) => {
16+ return (
17+ < section className = "bg-white text-black py-20" >
18+ < div className = "max-w-7xl mx-auto px-6" >
19+ < div className = "mb-16" >
20+ < div className = "flex items-center gap-6 mb-4" >
21+ < h2 className = "text-2xl font-medium text-black uppercase tracking-wider" > AWARDS</ h2 >
22+ </ div >
23+ < div className = "border-b border-gray-300 pb-4" > </ div >
24+ </ div >
25+
26+ < div className = "space-y-16" >
27+ { awards . map ( ( award , index ) => (
28+ < div key = { index } className = "space-y-4" >
29+ < div className = "flex justify-between items-start" >
30+ < div className = "flex-1" >
31+ < h3 className = "text-xl md:text-2xl lg:text-3xl font-light text-black leading-tight" >
32+ { award . name }
33+ </ h3 >
34+ < p className = "text-gray-600 text-base mt-2" > { award . description } </ p >
35+ </ div >
36+ < div className = "text-right ml-8" >
37+ < div className = "text-xl md:text-2xl font-light text-black" > { award . year } </ div >
38+ </ div >
39+ </ div >
40+ { index < awards . length - 1 && < div className = "h-px bg-gray-200 mt-16" > </ div > }
41+ </ div >
42+ ) ) }
43+ </ div >
44+ </ div >
45+ </ section >
46+ ) ;
47+ } ;
48+
49+ export default Awards ;
You can’t perform that action at this time.
0 commit comments