Skip to content

Commit c625bd0

Browse files
fix footer logos (#18)
1 parent 96ac3f6 commit c625bd0

File tree

3 files changed

+15
-27
lines changed

3 files changed

+15
-27
lines changed

app/components/Challenges.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1-
import { Users, HelpCircle, Wifi } from "lucide-react"
1+
import { Users, HelpCircle, Wifi, DollarSign, EyeOff } from "lucide-react"
22

33
export default function Challenges() {
44
const challenges = [
5+
{ icon: DollarSign, text: "Cost barriers" },
56
{ icon: HelpCircle, text: "Uncertainty which tool to use" },
67
{ icon: Users, text: "Lack of staff adoption" },
8+
{ icon: EyeOff, text: "Lack of awareness" },
79
{ icon: Wifi, text: "Connectivity issues" },
810
]
911

app/components/Context.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export default function Context() {
22
return (
3-
<section className="py-16 px-4 sm:px-6 lg:px-8 bg-white">
3+
<section className="py-24 px-4 sm:px-6 lg:px-8 bg-white ">
44
<div className="max-w-3xl mx-auto text-center">
55
<h2 className="text-3xl font-bold mb-4 text-[#009563]">
66
Why Digitalization Support Matters

app/components/Footer.tsx

Lines changed: 11 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -38,35 +38,21 @@ export default function Footer() {
3838
height={50}
3939
alt="Supporter 1 logo"
4040
/>
41-
<Image
42-
src="/supporter1.png"
43-
width={100}
44-
height={30}
45-
alt="Supporter 2 logo"
46-
/>
47-
<Image
48-
src="/supporter1.png"
49-
width={100}
50-
height={30}
51-
alt="Supporter 3 logo"
52-
/>
5341
</div>
5442
</div>
5543

5644
<div className="flex justify-center mb-8">
57-
<div className="bg-[#5E5E5E] px-6 py-2 rounded">
58-
<nav className="flex space-x-6">
59-
<Link href="#" className="text-white hover:text-gray-200">
60-
Contact Us
61-
</Link>
62-
<Link href="#" className="text-white hover:text-gray-200">
63-
Terms of Use
64-
</Link>
65-
<Link href="#" className="text-white hover:text-gray-200">
66-
Privacy Policy
67-
</Link>
68-
</nav>
69-
</div>
45+
<nav className="flex space-x-6">
46+
<Link href="#" className="text-[#01371C] hover:text-[#0FD460]">
47+
Contact Us
48+
</Link>
49+
<Link href="#" className="text-[#01371C] hover:text-[#0FD460]">
50+
Terms of Use
51+
</Link>
52+
<Link href="#" className="text-[#01371C] hover:text-[#0FD460]">
53+
Privacy Policy
54+
</Link>
55+
</nav>
7056
</div>
7157

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

0 commit comments

Comments
 (0)