diff --git a/src/App.tsx b/src/App.tsx
index 92aa572..8fdfe82 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -47,10 +47,7 @@ const NewsFeed = () => {
{isScrolled && (
+
{news
// .filter(
// ({ time }) => time.getUTCFullYear() >= today.getUTCFullYear() - 1
@@ -317,6 +314,25 @@ const Section = ({
);
};
+const Footer = () => (
+
+
+ Β© {new Date().getUTCFullYear()} Wode "Nimo" Ni.
+ {/* Last updated on{" "}
+ {new Date(document.lastModified).toLocaleString("default", {
+ month: "long",
+ day: "numeric",
+ year: "numeric",
+ })}
+ . */}
+
+
+
+
+
+
+
+);
const App: React.FC = () => {
const [darkMode, setDarkMode] = useState(
@@ -413,6 +429,7 @@ const App: React.FC = () => {
+