110 lines
3.3 KiB
HTML
110 lines
3.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Gianlucca Pirovano - Homelab Infrastructure</title>
|
|
<style>
|
|
body {
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
background: #0f0f0f;
|
|
color: #e0e0e0;
|
|
margin: 0;
|
|
padding: 20px;
|
|
line-height: 1.6;
|
|
}
|
|
.container {
|
|
max-width: 1100px;
|
|
margin: 0 auto;
|
|
}
|
|
h1 {
|
|
text-align: center;
|
|
color: #00ccff;
|
|
margin-bottom: 8px;
|
|
}
|
|
.subtitle {
|
|
text-align: center;
|
|
color: #888;
|
|
margin-bottom: 40px;
|
|
}
|
|
.description {
|
|
max-width: 800px;
|
|
margin: 0 auto 40px;
|
|
text-align: center;
|
|
color: #aaaaaa;
|
|
font-size: 1.05em;
|
|
}
|
|
.gallery {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
|
|
gap: 25px;
|
|
}
|
|
.gallery-item {
|
|
background: #1a1a1a;
|
|
border-radius: 12px;
|
|
overflow: hidden;
|
|
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
|
|
transition: transform 0.3s ease;
|
|
}
|
|
.gallery-item:hover {
|
|
transform: translateY(-8px);
|
|
}
|
|
.gallery-item img {
|
|
width: 100%;
|
|
height: auto;
|
|
display: block;
|
|
}
|
|
.caption {
|
|
padding: 16px;
|
|
text-align: center;
|
|
font-size: 1.05em;
|
|
color: #bbbbbb;
|
|
}
|
|
.back-link {
|
|
display: block;
|
|
text-align: center;
|
|
margin: 40px 0 20px;
|
|
color: #00ccff;
|
|
text-decoration: none;
|
|
font-size: 1.1em;
|
|
}
|
|
.back-link:hover {
|
|
text-decoration: underline;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Homelab Infrastructure</h1>
|
|
<p class="subtitle">Gianlucca Pirovano</p>
|
|
|
|
<div class="description">
|
|
My current homelab setup featuring a TrueNAS storage server, Proxmox VE virtualization host,
|
|
and pfSense router. An IOGEAR 8-port KVM switch is mounted on top for direct hardware access
|
|
when network management is unavailable.
|
|
</div>
|
|
|
|
<div class="gallery">
|
|
<div class="gallery-item">
|
|
<img src="pic1.jpg" alt="Homelab Setup">
|
|
<div class="caption">Homelab Overview</div>
|
|
</div>
|
|
<div class="gallery-item">
|
|
<img src="pic2.jpg" alt="Homelab Setup">
|
|
<div class="caption">Homelab Rack - Rear View</div>
|
|
</div>
|
|
<div class="gallery-item">
|
|
<img src="pic3.jpg" alt="Homelab Setup">
|
|
<div class="caption">Close-up of Servers and KVM Switch</div>
|
|
</div>
|
|
<div class="gallery-item">
|
|
<img src="pic4.jpg" alt="Homelab Setup">
|
|
<div class="caption">Isometric View of the Homelab Stack</div>
|
|
</div>
|
|
</div>
|
|
|
|
<a href="../" class="back-link">← Back to Resume</a>
|
|
</div>
|
|
</body>
|
|
</html>
|