werefox-cafe/src/info/components/footer-card.js

43 lines
1.7 KiB
JavaScript
Raw Normal View History

import Link from "next/link";
import WCard from "./werefox-card";
export default function FooterCard() {
return (
<WCard>
<footer className="p-4 space-y-2">
<div className="flex text-werefox-blue-darker dark:text-werefox-blue">
2021-04-28 00:17:56 -05:00
<div className="flex-1 sm:pr-16 pr-4">
<p className="text-right sm:text-md text-sm transition">
<Link href="/contacts">
2021-04-28 00:17:56 -05:00
<a className="hover:text-werefox-pink-dark dark:hover:text-werefox-pink">Contact</a>
</Link>
</p>
</div>
2021-04-28 00:17:56 -05:00
<div className="flex-1 sm:pl-16 pl-4">
<p className="text-left sm:text-md text-sm transition">
<Link href="https://gitea.werefox.dev/shadow8t4/info-werefox-dev">
2021-04-28 00:17:56 -05:00
<a className="hover:text-werefox-pink-dark dark:hover:text-werefox-pink" target="_blank"> /src</a>
</Link>
</p>
</div>
</div>
<p className="text-center text-xs text-werefox-grey-darkest dark:text-werefox-grey-lightest">
This site uses{" "}
<Link href="https://mutant.tech">
<a className="transition hover:text-werefox-grey-darker dark:hover:text-werefox-grey-lighter">
Mutant Standard emoji
</a>
</Link>
, which are licensed under a{" "}
<Link href="https://creativecommons.org/licenses/by-nc-sa/4.0/">
<a className="transition hover:text-werefox-grey-darker dark:hover:text-werefox-grey-lighter">
Creative Commons Attribution-NonCommercial-ShareAlike 4.0
International License
</a>
</Link>
</p>
</footer>
</WCard>
);
}