This commit is contained in:
2022-12-10 23:58:09 +01:00
parent 29da22d579
commit acda284da1
25 changed files with 799 additions and 111 deletions

View File

@@ -0,0 +1,9 @@
const Footer = () => {
return (
<div style={{ textAlign: "center" }}>
<p>&copy; Gractwo 2020-{new Date().getFullYear()}</p>
</div>
);
};
export default Footer;