Skip to content

Commit 7ec59ad

Browse files
committed
[feat]: added skills section;
1 parent 1f6eff6 commit 7ec59ad

1 file changed

Lines changed: 37 additions & 0 deletions

File tree

src/components/Skills.tsx

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
const skills = [
2+
'Python',
3+
'JavaScript',
4+
'TypeScript',
5+
'Java',
6+
'C',
7+
'React',
8+
'Node.js',
9+
'Machine Learning',
10+
'Full Stack Development',
11+
'Git & GitHub',
12+
'System Automation',
13+
'Arduino',
14+
'API Development',
15+
'Database Design',
16+
];
17+
18+
const Skills = () => {
19+
return (
20+
<div className="bg-black py-16 overflow-hidden w-screen relative left-1/2 right-1/2 -mx-[50vw]">
21+
<div className="relative">
22+
<div className="flex gap-4 animate-marquee whitespace-nowrap">
23+
{[...skills, ...skills, ...skills].map((skill, index) => (
24+
<div
25+
key={index}
26+
className="px-12 py-6 rounded-full border border-gray-500/40 text-white whitespace-nowrap hover:border-white transition-colors duration-300 cursor-pointer flex-shrink-0 text-2xl md:text-3xl lg:text-4xl font-medium"
27+
>
28+
{skill}
29+
</div>
30+
))}
31+
</div>
32+
</div>
33+
</div>
34+
);
35+
};
36+
37+
export default Skills;

0 commit comments

Comments
 (0)