This repository has been archived on 2026-03-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
web/components/Footer/Footer.tsx
2022-12-11 14:34:09 +01:00

20 lines
366 B
TypeScript

import Link from "next/link";
const Footer = () => {
return (
<div style={{ textAlign: "center" }}>
<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>
);
};
export { Footer };