CSS cleanup and decrease padding on hero and section a bit

This commit is contained in:
2025-09-02 23:19:31 +02:00
parent d124561ef9
commit 7c45c0af08
24 changed files with 689 additions and 213 deletions

View File

@ -4,15 +4,14 @@
<div class="nav-container">
<div class="nav-logo">
<a href="/">
<img src="/static/Tux.svg" alt="Tux the Linux Penguin" class="tux-icon">
<img src="/static/images/Tux.svg" alt="Tux the Linux Penguin" class="tux-icon">
<h1>{{.CompanyName}}</h1>
</a>
</div>
<div class="nav-links">
<a href="/"{{if eq .CurrentPage "home"}} class="active"{{end}}>Home</a>
<a href="/#voordelen">↓ Voordelen</a>
<a href="/#distros">↓ Linux-keuze</a>
<a href="/#diensten">↓ Diensten</a>
<a href="/linux"{{if eq .CurrentPage "linux"}} class="active"{{end}}>Waarom Linux</a>
<a href="/diensten"{{if eq .CurrentPage "diensten"}} class="active"{{end}}>Diensten</a>
<a href="/over-mij"{{if eq .CurrentPage "about"}} class="active"{{end}}>Over mij</a>
<a href="/contact"{{if eq .CurrentPage "contact"}} class="active"{{end}}>Contact</a>
</div>
@ -21,9 +20,8 @@
</button>
<div class="mobile-menu" id="mobile-menu">
<a href="/"{{if eq .CurrentPage "home"}} class="active"{{end}}>Home</a>
<a href="/#voordelen">↓ Voordelen</a>
<a href="/#distros">↓ Linux-keuze</a>
<a href="/#diensten">↓ Diensten</a>
<a href="/linux"{{if eq .CurrentPage "linux"}} class="active"{{end}}>Waarom Linux</a>
<a href="/diensten"{{if eq .CurrentPage "diensten"}} class="active"{{end}}>Diensten</a>
<a href="/over-mij"{{if eq .CurrentPage "about"}} class="active"{{end}}>Over mij</a>
<a href="/contact"{{if eq .CurrentPage "contact"}} class="active"{{end}}>Contact</a>
</div>