Skip to content

Commit d643985

Browse files
Fix: Home page footer
The Home page footer was not rendering correctly because the `Index.tsx` file was not using the `Layout` component. This commit ensures that `Index.tsx` correctly integrates with the `Layout` component, resolving the footer issue.
1 parent e1bd324 commit d643985

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/pages/Index.tsx

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

1111
const Index: React.FC = () => {
1212
return (
13-
<div className="relative">
14-
{/* Fixed background image with proper opacity */}
15-
<div className="fixed inset-0 z-0" style={{
13+
<div className="relative min-h-screen">
14+
{/* Fixed background image with proper opacity - but lower z-index */}
15+
<div className="fixed inset-0 -z-10" style={{
1616
backgroundImage: `url('/lovable-uploads/EMWBack.png')`,
1717
backgroundSize: 'cover',
1818
backgroundPosition: 'center',

0 commit comments

Comments
 (0)