added footer component

This commit is contained in:
2025-08-21 18:53:18 +02:00
parent d1625d7e47
commit 79df00a17e
3 changed files with 18 additions and 4 deletions

View File

@@ -0,0 +1,12 @@
import React from "react";
const Footer: React.FC = () => {
return (
<footer className="fixed bottom-0 left-0 text-sm w-full bg-slate-100 text-center py-2 border-t border-slate-200 z-50">
<p>Made with by Theis Gaedigk - Jahrgang 2019</p>
<p>v1.1</p>
</footer>
);
};
export default Footer;