@@ -19,42 +19,26 @@ export const Technologies = () => {
1919 return (
2020 < div className = "flex flex-col mx-5" >
2121 < div >
22- < motion . p
23- whileInView = { { opacity : 1 , y : 0 } }
24- initial = { { opacity : 0 , y : - 100 } }
25- transition = { { duration : 1.5 } }
26- className = "mt-20 mb-5 font-mono text-xl text-center"
27- >
22+ < p className = "mt-20 mb-5 font-mono text-xl text-center" >
2823 < span className = "text-2xl font-bold" > Languages</ span >
29- </ motion . p >
24+ </ p >
3025 </ div >
3126 < div className = "flex flex-wrap justify-center gap-20" >
3227 { languages . map ( ( language ) => (
33- < motion . div
34- whileInView = { { opacity : 1 , x : 0 } }
35- initial = { { opacity : 0 , x : language . xLanguage } }
36- transition = { { duration : 1.5 } }
37- className = "max-w-3xl text-center"
38- key = { language . id }
39- >
28+ < div className = "max-w-3xl text-center" key = { language . id } >
4029 { " " }
4130 < img
4231 src = { language . path }
4332 alt = { language . name }
4433 className = "w-20 h-20"
4534 />
46- </ motion . div >
35+ </ div >
4736 ) ) }
4837 </ div >
4938 < div >
50- < motion . p
51- whileInView = { { opacity : 1 , x : 0 } }
52- initial = { { opacity : 0 , x : 100 } }
53- transition = { { duration : 1.5 } }
54- className = "mt-20 mb-5 font-mono text-xl text-center"
55- >
39+ < p className = "mt-20 mb-5 font-mono text-xl text-center" >
5640 < span className = "text-2xl font-bold" > Frameworks and Tools</ span >
57- </ motion . p >
41+ </ p >
5842 </ div >
5943 < div className = "flex flex-wrap justify-center gap-20" >
6044 { tools . map ( ( tool ) => (
0 commit comments