20 lines
385 B
TypeScript
20 lines
385 B
TypeScript
import Link from "next/link";
|
|
|
|
const Footer = () => {
|
|
return (
|
|
<div style={{ textAlign: "center", padding: "1rem 0" }}>
|
|
<p>
|
|
© Gractwo 2020-{new Date().getFullYear()}
|
|
<span style={{ color: "#666" }}>
|
|
{" | "}open-source on{" "}
|
|
<Link href="/oss" style={{ color: "inherit" }}>
|
|
github
|
|
</Link>
|
|
</span>
|
|
</p>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export { Footer };
|