Skip to content
This repository has been archived by the owner on Jan 24, 2024. It is now read-only.

adds legal footer links #7

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions components/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,14 @@ export const Layout = ({
<div className="flex flex-col flex-1">{children}</div>
{/* Footer Blocks */}
<Blocks { ...globalData } />
<div className="bg-primary text-white px-10 py-6">
<ul className="justify-center flex gap-6 mx-auto text-sm pb-2">
<li><a className="underline" target="_blank" href="https://discuss.ipfs.tech/tos">Terms of Use</a></li>
<li><a className="underline" target="_blank" href="https://discuss.ipfs.tech/privacy">Privacy Policy</a></li>
<li><a className="underline" target="_blank" href="https://ipfs.tech/legal/">DMCA Policy</a></li>
</ul>
<p className="mx-auto text-center text-sm">Made with love by <a className="underline" href="https://protocol.ai/" target="_blank">Protocol Labs</a></p>
</div>
</div>
</>
);
Expand Down