Skip to content

Commit

Permalink
fix: adds links to footer (#432)
Browse files Browse the repository at this point in the history
* fix: adds links on desktop

* npm run format
  • Loading branch information
bdougie committed Sep 23, 2022
1 parent 799cc61 commit 7adfbe7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/organisms/Footer/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ const Footer = (): JSX.Element => {
</div>
<div className="flex justify-center gap-x-4 ">
<div className=" hidden lg:flex items-center border-r pr-4 gap-x-4 text-light-slate-11 text-sm">
<a className="px-2 hover:text-light-slate-12" href="" target="_blank">
<a className="px-2 hover:text-light-slate-12" href={footerContext[0].terms?.url} target="_blank" rel="noreferrer">
{footerContext[0].terms?.text}
</a>
<a className="px-2 hover:text-light-slate-12" href="" target="_blank">
<a className="px-2 hover:text-light-slate-12" href={footerContext[0].privacy?.url} target="_blank" rel="noreferrer">
{footerContext[0].privacy?.text}
</a>
<a className="px-2 hover:text-light-slate-12" href="" target="_blank">
<a className="px-2 hover:text-light-slate-12" href={footerContext[0].status?.url} target="_blank" rel="noreferrer">
{footerContext[0].status?.text}
</a>
</div>
Expand Down

0 comments on commit 7adfbe7

Please sign in to comment.