Skip to content

Commit ec023e1

Browse files
authored
Update ParticipationSection.tsx
Signed-off-by: Aitor Alien <[email protected]>
1 parent 3c83ecd commit ec023e1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/components/ParticipationSection.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff 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 }}

0 commit comments

Comments
 (0)