Skip to content

Commit

Permalink
fix footer logos (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
munyanezaarmel authored Feb 13, 2025
1 parent 96ac3f6 commit c625bd0
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 27 deletions.
4 changes: 3 additions & 1 deletion app/components/Challenges.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import { Users, HelpCircle, Wifi } from "lucide-react"
import { Users, HelpCircle, Wifi, DollarSign, EyeOff } from "lucide-react"

export default function Challenges() {
const challenges = [
{ icon: DollarSign, text: "Cost barriers" },
{ icon: HelpCircle, text: "Uncertainty which tool to use" },
{ icon: Users, text: "Lack of staff adoption" },
{ icon: EyeOff, text: "Lack of awareness" },
{ icon: Wifi, text: "Connectivity issues" },
]

Expand Down
2 changes: 1 addition & 1 deletion app/components/Context.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export default function Context() {
return (
<section className="py-16 px-4 sm:px-6 lg:px-8 bg-white">
<section className="py-24 px-4 sm:px-6 lg:px-8 bg-white ">
<div className="max-w-3xl mx-auto text-center">
<h2 className="text-3xl font-bold mb-4 text-[#009563]">
Why Digitalization Support Matters
Expand Down
36 changes: 11 additions & 25 deletions app/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,35 +38,21 @@ export default function Footer() {
height={50}
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="flex justify-center mb-8">
<div className="bg-[#5E5E5E] px-6 py-2 rounded">
<nav className="flex space-x-6">
<Link href="#" className="text-white hover:text-gray-200">
Contact Us
</Link>
<Link href="#" className="text-white hover:text-gray-200">
Terms of Use
</Link>
<Link href="#" className="text-white hover:text-gray-200">
Privacy Policy
</Link>
</nav>
</div>
<nav className="flex space-x-6">
<Link href="#" className="text-[#01371C] hover:text-[#0FD460]">
Contact Us
</Link>
<Link href="#" className="text-[#01371C] hover:text-[#0FD460]">
Terms of Use
</Link>
<Link href="#" className="text-[#01371C] hover:text-[#0FD460]">
Privacy Policy
</Link>
</nav>
</div>

<div className="text-center text-gray-600 text-sm mt-4">
Expand Down

0 comments on commit c625bd0

Please sign in to comment.