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

20 lines
385 B
TypeScript

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