Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
munyanezaarmel committed Jan 29, 2025
1 parent f8f1e13 commit 0588ef6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
4 changes: 3 additions & 1 deletion app/components/Challenges.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ export default function Challenges() {
{challenges.map((challenge, index) => (
<div key={index} className="flex flex-col items-center text-center">
<challenge.icon className="w-16 h-16 text-[#fcac04] mb-4" />
<p className="text-lg font-semibold text-gray-800">{challenge.text}</p>
<p className="text-lg font-semibold text-gray-800">
{challenge.text}
</p>
</div>
))}
</div>
Expand Down
12 changes: 7 additions & 5 deletions app/components/Context.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,16 @@ export default function Context() {
return (
<section className="py-16 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 Matters</h2>
<h2 className="text-3xl font-bold mb-4 text-[#009563]">
Why Digitalization Matters
</h2>
<p className="text-lg text-[#1D1D1D]">
Digital tools are key to operational efficiency, scalability, and access to financing for SMEs in the
Distributed Renewable Energy (DRE) sector. However, adoption remains low due to awareness and accessibility
barriers.
Digital tools are key to operational efficiency, scalability, and
access to financing for SMEs in the Distributed Renewable Energy (DRE)
sector. However, adoption remains low due to awareness and
accessibility barriers.
</p>
</div>
</section>
)
}

0 comments on commit 0588ef6

Please sign in to comment.