2021-10-06 23:04:38 -05:00
|
|
|
import FButton from "./footer-button";
|
2021-04-27 19:56:34 -05:00
|
|
|
export default function FooterCard() {
|
|
|
|
return (
|
2021-05-01 01:15:09 -05:00
|
|
|
<footer className="p-4 space-y-2 rounded-lg ring-2 ring-werefox-grey dark:ring-werefox-grey-darker bg-werefox-grey-light dark:bg-werefox-grey">
|
|
|
|
<div className="flex text-werefox-blue-darker dark:text-werefox-blue">
|
2021-10-06 23:04:38 -05:00
|
|
|
<div className="flex-1"></div>
|
|
|
|
<FButton url="/contacts" inner_text="Contact" />
|
|
|
|
<FButton
|
|
|
|
url="https://gitea.werefox.dev/shadow8t4/info-werefox-dev"
|
|
|
|
inner_text=" /src"
|
|
|
|
is_external="_blank"
|
|
|
|
/>
|
|
|
|
<div className="flex-1"></div>
|
2021-05-01 01:15:09 -05:00
|
|
|
</div>
|
2021-10-11 22:43:39 -05:00
|
|
|
<div className="text-center text-xs text-werefox-grey-darkest dark:text-werefox-grey-lightest">
|
2021-05-01 01:15:09 -05:00
|
|
|
This site uses{" "}
|
2021-10-06 23:04:38 -05:00
|
|
|
<div className="inline-block pt-1 pb-1">
|
|
|
|
<FButton
|
|
|
|
url="https://mutant.tech"
|
|
|
|
inner_text="Mutant Standard emoji"
|
|
|
|
is_external="_blank"
|
|
|
|
/>
|
|
|
|
</div>
|
2021-05-01 01:15:09 -05:00
|
|
|
, which are licensed under a{" "}
|
2021-10-06 23:04:38 -05:00
|
|
|
<div className="inline-block pt-1 pb-1">
|
|
|
|
<FButton
|
|
|
|
url="https://creativecommons.org/licenses/by-nc-sa/4.0/"
|
|
|
|
inner_text="Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License"
|
|
|
|
is_external="_blank"
|
|
|
|
/>
|
|
|
|
</div>
|
2021-10-11 22:43:39 -05:00
|
|
|
</div>
|
2021-05-01 01:15:09 -05:00
|
|
|
</footer>
|
2021-04-27 19:56:34 -05:00
|
|
|
);
|
|
|
|
}
|