mirror of
https://github.com/block/bitcoin-treasury.git
synced 2025-04-23 01:01:24 +00:00
32 lines
864 B
TypeScript
32 lines
864 B
TypeScript
import React from "react";
|
|
import { Goose } from "../icons/goose";
|
|
|
|
const Footer = () => {
|
|
return (
|
|
<footer className="w-full fixed bottom-0 border-t border-[#1e1e1e] text-white h-[54px]">
|
|
<div className="flex justify-center items-center h-full">
|
|
<div className="flex flex-rows">
|
|
Made with{" "}
|
|
<a
|
|
href="https://block.github.io/goose/"
|
|
target="_blank"
|
|
className="flex flex-rows hover:underline"
|
|
>
|
|
<Goose className="mx-1" /> codename goose
|
|
</a>
|
|
</div>
|
|
|
|
<div className="mx-4">|</div>
|
|
|
|
<div>
|
|
<a href="https://github.com/block/bitcoin-treasury/blob/main/DISCLAIMER.md" target="_blank" className="hover:underline">
|
|
Disclaimer
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
);
|
|
};
|
|
|
|
export default Footer;
|