Skip to content

Commit

Permalink
update website tos and add footer links (#4240)
Browse files Browse the repository at this point in the history
  • Loading branch information
callensm authored Jun 27, 2023
1 parent f5be55f commit f8bb13d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions web/components/CoralFooter.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { memo } from 'react';
import Image from 'next/legacy/image';
import Link from 'next/link';

function CoralFooter() {
return (
Expand All @@ -12,15 +13,21 @@ function CoralFooter() {
</a>
</p>
</div>
<div className="flex">
<div className="flex items-center gap-4">
<Link className="text-sm text-zinc-400" href="/terms" target="_blank">
Terms
</Link>
<Link className="text-sm text-zinc-400" href="/privacy" target="_blank">
Privacy
</Link>
<div className="flex flex-col justify-center">
<a
href="https://twitter.com/0xCoral"
className="mr-6 flex h-full w-5 flex-col justify-center"
className="flex h-full w-5 flex-col justify-center"
target="_blank"
rel="noreferrer"
>
<Image alt="twitter-icon" src="/brands/twitter.png" width="20px" height="20px" />
<Image alt="twitter-icon" src="/brands/twitter.png" width={20} height={20} />
</a>
</div>
<a
Expand All @@ -29,7 +36,7 @@ function CoralFooter() {
target="_blank"
rel="noreferrer"
>
<Image alt="icon-github" src="/brands/github.png" width="20px" height="20px" />
<Image alt="icon-github" src="/brands/github.png" width={20} height={20} />
</a>
</div>
</div>
Expand Down
Binary file modified web/public/terms.pdf
Binary file not shown.

1 comment on commit f8bb13d

@vercel
Copy link

@vercel vercel bot commented on f8bb13d Jun 27, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.