2021-04-18 23:14:21 -05:00
|
|
|
import Link from "next/link";
|
|
|
|
import WCard from "./werefox-card"
|
|
|
|
|
|
|
|
export default function MutantStandard() {
|
|
|
|
return (
|
|
|
|
<WCard>
|
|
|
|
<footer className="p-4">
|
2021-04-26 22:09:18 -05:00
|
|
|
<p className="text-center text-xs text-werefox-grey-darkest dark:text-werefox-grey-lightest">
|
2021-04-18 23:14:21 -05:00
|
|
|
This site uses{" "}
|
|
|
|
<Link href="https://mutant.tech">
|
|
|
|
<a>Mutant Standard emoji</a>
|
|
|
|
</Link>
|
|
|
|
, which are licensed under a{" "}
|
|
|
|
<Link href="https://creativecommons.org/licenses/by-nc-sa/4.0/">
|
|
|
|
<a>
|
|
|
|
Creative Commons Attribution-NonCommercial-ShareAlike 4.0
|
|
|
|
International License
|
|
|
|
</a>
|
|
|
|
</Link>
|
|
|
|
</p>
|
|
|
|
</footer>
|
|
|
|
</WCard>
|
|
|
|
);
|
|
|
|
}
|