Added media for kube, home server rack, body mods, chubby buttons, and home page
Some checks failed
Build and Test - Staging / determine_version (pull_request) Successful in 1m47s
Playwright Tests / test (pull_request) Failing after 2m49s
Build and Test - Staging / build_and_push (pull_request) Successful in 4m36s
Build and Test - Staging / test (pull_request) Successful in 1s
Build and Test - Staging / deploy_staging (pull_request) Successful in 7s

This commit is contained in:
2025-11-06 23:14:19 -08:00
parent 3e34b94ec5
commit 33388f59ee
30 changed files with 105 additions and 31 deletions

View File

@@ -4,21 +4,26 @@ import Carousel from "@components/CustomCarousel.astro";
import type {carouselGroup} from "@interfaces/image-carousel.ts";
import enclosure_front from "@assets/hobby/homelab/offsite-backup-rack/enclosure-front.jpg";
import rack_from_above from "@assets/hobby/homelab/home-server-rack/rack-from-above.jpg";
import rack_from_below from "@assets/hobby/homelab/home-server-rack/rack-from-below.jpg";
import rack_middle from "@assets/hobby/homelab/home-server-rack/rack-middle.jpg";
import rack_top from "@assets/hobby/homelab/home-server-rack/rack-top.jpg";
const headerCarouselGroup: carouselGroup = {
animation: "slide",
images: [
enclosure_front,
rack_from_below,
rack_from_above,
rack_top,
rack_middle
]
}
---
<HobbyLayout>
<HobbyLayout title="Home Server Rack">
<Carousel carouselGroup={headerCarouselGroup}/>
<h2 class="font-bold md:text-2xl my-4">Prior Homelab</h2>
<!--<h2 class="font-bold md:text-2xl my-4">Prior Homelab</h2>-->
</HobbyLayout>