oss on github footer

This commit is contained in:
2022-12-11 14:34:09 +01:00
parent 5c272126b0
commit 4d240d81eb

View File

@@ -1,7 +1,17 @@
import Link from "next/link";
const Footer = () => { const Footer = () => {
return ( return (
<div style={{ textAlign: "center" }}> <div style={{ textAlign: "center" }}>
<p>&copy; Gractwo 2020-{new Date().getFullYear()}</p> <p>
&copy; Gractwo 2020-{new Date().getFullYear()}
<span style={{ color: "#666" }}>
{" | "}open-source on{" "}
<Link href="/oss" style={{ color: "inherit" }}>
github
</Link>
</span>
</p>
</div> </div>
); );
}; };