trying to fix the interface
All checks were successful
Deploy / trigger (push) Successful in 40s

This commit is contained in:
2026-03-28 11:18:42 +01:00
parent 0e370eb457
commit d371b504f5
6 changed files with 90 additions and 91 deletions

View File

@@ -6,12 +6,13 @@
<title>CryptoSeals - Home</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="stylesheet" href="style.css">
<script src="index.js" defer></script>
</head>
<body>
<nav class="navbar">
<a href="index.html" class="nav-brand">
<img src="seal1.png" height="50" alt="🦭" onerror="this.src='https://cdn-icons-png.flaticon.com/512/3063/3063126.png';">
<img src="seal1.png" height="50" alt="🦭">
CryptoSeals
</a>
<div class="menu-toggle" onclick="toggleMenu()">
@@ -45,14 +46,5 @@
© <span id="year"></span> CryptoSeals Team
</div>
</footer>
<script>
// Gestione Menu Mobile
function toggleMenu() {
document.getElementById("nav-links").classList.toggle("active");
}
// Anno dinamico Footer
document.getElementById("year").innerText = new Date().getFullYear();
</script>
</body>
</html>