Skip to content

Commit e31647b

Browse files
Fix: Home page footer
The AI ensured the Home page footer functions correctly by updating the `Index.tsx` file.
1 parent e63c215 commit e31647b

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-
<div className="min-h-screen bg-alien-space relative">
13+
<>
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-
</div>
40+
</>
4141
);
4242
};
4343

0 commit comments

Comments
 (0)