Add new services section in index.php with Home Assistant and NAS details

This commit is contained in:
Fabian Schieder 2026-02-28 01:09:56 +01:00
parent 03182d513f
commit ab06a753e3

View File

@ -26,6 +26,24 @@ $projects = [
"external" => true
],
],
"dienste" => [
[
"title" => "Home Assistant",
"description" => "Meine Smart-Home-Zentrale Automatisierungen & Geräte.",
"url" => "https://homeassistant.fabianschieder.com",
"icon" => "fas fa-house-signal",
"color" => "#f59e0b",
"external" => true
],
[
"title" => "NAS",
"description" => "Mein Netzwerkspeicher Daten & Backups.",
"url" => "https://nas.fabianschieder.com",
"icon" => "fas fa-server",
"color" => "#a855f7",
"external" => true
],
],
];
?>
<!DOCTYPE html>
@ -55,6 +73,8 @@ $projects = [
<i class="fas fa-lock"></i> Privat
<?php elseif ($category === "schule"): ?>
<i class="fas fa-graduation-cap"></i> Schule
<?php elseif ($category === "dienste"): ?>
<i class="fas fa-network-wired"></i> Dienste
<?php endif; ?>
</h2>
<div class="cards">
@ -89,3 +109,5 @@ $projects = [
</body>
</html>