Add Copyright Footer

This commit is contained in:
2026-02-27 09:56:44 +01:00
parent 6190d707bb
commit 02e90a4981

View File

@@ -159,6 +159,17 @@ const App: React.FC<AppProps> = () => {
</button> </button>
</div> </div>
)} )}
{/* Footer Area with Links and Copyright */}
<div style={{ marginTop: "auto", padding: "10px", textAlign: "center", fontSize: "12px", borderTop: "1px solid #eee", width: "100%", boxSizing: "border-box" }}>
<div style={{ marginBottom: "8px" }}>
<a href="/manifest.prod.xml" download style={{ color: "#0078d4", textDecoration: "none", marginRight: "16px" }}>Prod-Manifest (.xml)</a>
<a href="/docs/" target="_blank" rel="noopener noreferrer" style={{ color: "#0078d4", textDecoration: "none" }}>Dokumentation</a>
</div>
<div style={{ color: "#666" }}>
&copy; {new Date().getFullYear()} Toni Martin - SAT Elektrotechnik GmbH. Alle Rechte vorbehalten.
</div>
</div>
</div> </div>
); );
}; };