43 lines
1.7 KiB
JavaScript
43 lines
1.7 KiB
JavaScript
![]() |
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="container flex text-werefox-blue-darker dark:text-werefox-blue">
|
||
|
<div className="flex-1 lg:pl-16 pl-4">
|
||
|
<p className="text-center sm:text-md text-sm transition hover:text-werefox-pink-dark dark:hover:text-werefox-pink">
|
||
|
<Link href="/contacts">
|
||
|
<a>Contact</a>
|
||
|
</Link>
|
||
|
</p>
|
||
|
</div>
|
||
|
<div className="flex-1 lg:pr-16 pr-4">
|
||
|
<p className="text-center sm:text-md text-sm transition hover:text-werefox-pink-dark dark:hover:text-werefox-pink">
|
||
|
<Link href="https://gitea.werefox.dev/shadow8t4/info-werefox-dev">
|
||
|
<a 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>
|
||
|
);
|
||
|
}
|