Skip to content

Commit 1f6eff6

Browse files
committed
[feat]: added awards section;
1 parent 419b61d commit 1f6eff6

1 file changed

Lines changed: 49 additions & 0 deletions

File tree

src/components/Awards.tsx

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
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;

0 commit comments

Comments
 (0)