-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #871 from zheyichn/zheyichn/856-footer-a11y-issues
fix footer a11y issue
- Loading branch information
Showing
1 changed file
with
19 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" | ||
|