Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
munyanezaarmel committed Jan 28, 2025
1 parent d665736 commit 2db66e8
Showing 1 changed file with 32 additions and 7 deletions.
39 changes: 32 additions & 7 deletions app/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,18 @@ export default function Footer() {
<div>
<p className="text-gray-600 mb-4">Made by:</p>
<div className="flex items-center gap-8">
<Image src="/supporter1.png" width={120} height={40} alt="EnAccess logo" />
<Image src="/supporter1.png" width={120} height={40} alt="GET.invest logo" />
<Image
src="/supporter1.png"
width={120}
height={40}
alt="EnAccess logo"
/>
<Image
src="/supporter1.png"
width={120}
height={40}
alt="GET.invest logo"
/>
</div>
</div>
<div className="flex flex-col items-start md:items-end">
Expand All @@ -44,17 +54,32 @@ export default function Footer() {
<div className="mb-12">
<p className="text-gray-600 mb-4">Other supporters:</p>
<div className="flex justify-center gap-8">
<Image src="/supporter1.png" width={100} height={30} alt="Supporter 1 logo" />
<Image src="/supporter1.png" width={100} height={30} alt="Supporter 2 logo" />
<Image src="/supporter1.png" width={100} height={30} alt="Supporter 3 logo" />
<Image
src="/supporter1.png"
width={100}
height={30}
alt="Supporter 1 logo"
/>
<Image
src="/supporter1.png"
width={100}
height={30}
alt="Supporter 2 logo"
/>
<Image
src="/supporter1.png"
width={100}
height={30}
alt="Supporter 3 logo"
/>
</div>
</div>

<div className="text-center text-gray-600 text-sm">
© {new Date().getFullYear()} Digitalization Support Hub. All rights reserved.
© {new Date().getFullYear()} Digitalization Support Hub. All rights
reserved.
</div>
</div>
</footer>
)
}

0 comments on commit 2db66e8

Please sign in to comment.