Skip to content

Commit

Permalink
Merge pull request #871 from zheyichn/zheyichn/856-footer-a11y-issues
Browse files Browse the repository at this point in the history
fix footer a11y issue
  • Loading branch information
CodeWritingCow committed Aug 14, 2024
2 parents 4686db0 + d8ad340 commit 8de6f46
Showing 1 changed file with 19 additions and 12 deletions.
31 changes: 19 additions & 12 deletions src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,40 +20,47 @@ const Footer = () => {
<span className="base-sm text-gray-600">
© 2024 Clean & Green Philly
</span>
<span className="max-sm:hidden pl-2 pr-1" aria-hidden="true">
</span>
</li>

<span className="max-sm:hidden"></span>

<li className="base-sm underline text-gray-600 mx-auto">
<li className="base-sm text-gray-600 mx-auto">
<a
className="hover:text-gray-800 cursor-pointer"
className="hover:text-gray-800 cursor-pointer underline"
onClick={onClickCookieSettings}
>
Cookie Settings
</a>
<span className="max-sm:hidden pl-2 pr-1" aria-hidden="true">
</span>
</li>

<span className="max-sm:hidden"></span>

<li className="base-sm underline text-gray-600 mx-auto">
<Link href="/legal-disclaimer" className="hover:text-gray-800">
<li className="base-sm text-gray-600 mx-auto">
<Link
href="/legal-disclaimer"
className="hover:text-gray-800 underline"
>
Legal Disclaimer
</Link>
<span className="max-sm:hidden pl-2 pr-1" aria-hidden="true">
</span>
</li>

<span className="max-sm:hidden"></span>

<li>
<a
href="mailto:[email protected]"
className="base-sm underline text-gray-600 hover:text-gray-800"
>
Contact Us
</a>
<span className="max-sm:hidden pl-2 pr-1" aria-hidden="true">
</span>
</li>

<span className="max-sm:hidden"></span>

<li className="base-sm underline text-gray-600 mx-auto">
<Link
href="/accessibility-statement"
Expand Down

0 comments on commit 8de6f46

Please sign in to comment.