File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -34,10 +34,11 @@ const ParticipationSection = () => {
3434 return (
3535 < section id = "participate" className = "py-20 relative" >
3636 < div className = "container mx-auto px-4" >
37+ { /* Layout principal: ya NO hay lg:w-1/2 */ }
3738 < div className = "flex flex-col lg:flex-row gap-12 items-center" >
3839 { /* Image side */ }
3940 < motion . div
40- className = "w-full lg:w-1/2 "
41+ className = "w-full"
4142 initial = { { opacity : 0 , x : - 30 } }
4243 whileInView = { { opacity : 1 , x : 0 } }
4344 transition = { { duration : 0.8 } }
@@ -49,7 +50,7 @@ const ParticipationSection = () => {
4950 </ motion . div >
5051 { /* Content side */ }
5152 < motion . div
52- className = "w-full lg:w-1/2 "
53+ className = "w-full"
5354 initial = { { opacity : 0 , x : 30 } }
5455 whileInView = { { opacity : 1 , x : 0 } }
5556 transition = { { duration : 0.8 } }
You can’t perform that action at this time.
0 commit comments