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 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 ;
You can’t perform that action at this time.
0 commit comments