Skip to content

Commit e1bd324

Browse files
Fix: Home page footer
The footer now functions correctly on the home page.
1 parent e31647b commit e1bd324

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pages/Index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import ParticipationSection from '@/components/ParticipationSection';
1010

1111
const Index: React.FC = () => {
1212
return (
13-
<>
13+
<div className="relative">
1414
{/* Fixed background image with proper opacity */}
1515
<div className="fixed inset-0 z-0" style={{
1616
backgroundImage: `url('/lovable-uploads/EMWBack.png')`,
@@ -37,7 +37,7 @@ const Index: React.FC = () => {
3737
<ParticipationSection />
3838
</div>
3939
</div>
40-
</>
40+
</div>
4141
);
4242
};
4343

0 commit comments

Comments
 (0)