1
0

Sysinfo: Favicon & Footer hinzugefügt

This commit is contained in:
Akamaru 2025-03-21 13:22:38 +01:00
parent 35e51d5d83
commit 0b33c8cfd7
2 changed files with 47 additions and 2 deletions

BIN
sys_info/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

View File

@ -3,11 +3,13 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Systeminformationen</title>
<meta property="og:title" content="Systeminformationen">
<title>Systeminformationen | PonyWave Tools</title>
<meta property="og:title" content="Systeminformationen | PonyWave Tools">
<meta property="og:description" content="Zeigt Infos zu Browser, Gerät, Betriebssystem, User-Agent und IPs an">
<meta property="og:type" content="website">
<meta property="og:url" content="https://tools.ponywave.de/sys_info">
<meta property="og:image" content="https://tools.ponywave.de/sys_info/icon.png">
<link rel="icon" href="https://tools.ponywave.de/sys_info/icon.png">
<script defer src="https://stats.ponywave.de/script" data-website-id="9ef713d2-adb9-4906-9df5-708d8a8b9131" data-tag="sys_info"></script>
<style>
:root {
@ -250,6 +252,39 @@
background: var(--box-bg);
color: var(--text-color);
}
footer {
width: 100%;
background-color: rgba(var(--bg-color), 0.95);
color: var(--text-color);
text-align: center;
padding: 10px 0;
margin-top: 20px;
border-radius: 10px;
box-shadow: 0 -5px 15px var(--shadow);
}
footer a {
color: var(--text-color);
text-decoration: none;
font-weight: bold;
transition: color 0.3s;
}
footer a:hover {
color: var(--accent-1);
}
.heart {
color: #ff5c8d;
animation: heartbeat 1.5s infinite;
}
@keyframes heartbeat {
0% { transform: scale(1); }
50% { transform: scale(1.2); }
100% { transform: scale(1); }
}
</style>
<script src="https://html2canvas.hertzen.com/dist/html2canvas.min.js"></script>
</head>
@ -796,6 +831,16 @@
// Initialisierung der Informationen
updateBrowserInfo();
getIP(); // Initialisiere IP-Abfrage
// Jahr für das Copyright aktualisieren
document.getElementById('current-year').textContent = new Date().getFullYear();
</script>
<footer>
<p>
<a href="https://tools.ponywave.de/">Zurück zur Startseite</a> |
&copy; <span id="current-year"></span> Akamaru | Made with <span class="heart">❤️</span> by DeepSeek
</p>
</footer>
</body>
</html>