diff options
| author | schererleander <leander@schererleander.de> | 2025-05-30 01:01:17 +0200 |
|---|---|---|
| committer | schererleander <leander@schererleander.de> | 2025-05-30 01:01:17 +0200 |
| commit | afdc982863b6cca573f1db58e1795aa8c45fabca (patch) | |
| tree | 6b94d2ffdcb0e1b5ccbaf584c825763ab72ab99d /src/pages/Homelab.tsx | |
| parent | 8f2c8393510dfefc22871661b0ef9964569e290b (diff) | |
rewrite site
Diffstat (limited to 'src/pages/Homelab.tsx')
| -rw-r--r-- | src/pages/Homelab.tsx | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/src/pages/Homelab.tsx b/src/pages/Homelab.tsx new file mode 100644 index 0000000..580babc --- /dev/null +++ b/src/pages/Homelab.tsx @@ -0,0 +1,52 @@ +import nasImg from '../assets/nas.png'; +import piImg from '../assets/pi.png'; +import LinkWithIcon from '../components/LinkWithIcon'; + +const nasServices = [ + "Jellyfin: Media library", + "Kavita: Ebooks and manga", + "AdGuard Home: Ad blocking", + "Nginx: Reverse proxy", + "Ollama: Enough for small LLM testing", +]; + +export default function HomelabPage() { + return ( + <> + <title>߸ homelab</title> + <h1>Home lab</h1> + + <section className="mb-12"> + <h2>NAS</h2> + <img src={nasImg} alt="NAS" className="mx-auto mb-4 w-64 rounded-lg shadow" /> + <p className="mb-4 leading-relaxed"> + My custom-built NAS running <strong>Unraid</strong> hosts the following services. See <LinkWithIcon href='/gear'>gear</LinkWithIcon> for specs. + </p> + <ul className="list-disc pl-6 space-y-1"> + {nasServices.map((svc) => ( + <li key={svc}>{svc}</li> + ))} + </ul> + <p className="mb-4 leading-relaxed"> + For remote access, I use a VPN to connect to the machine. I also back up my MacBook using Time Machine, and for my desktop and VPS I use rsync. + </p> + </section> + + <section className="mb-12"> + <h2>Raspberry Pi</h2> + <img src={piImg} alt="Raspberry Pi 5" className="mx-auto mb-4 w-64 rounded-lg shadow" /> + <p className="mb-4 leading-relaxed"> + Raspberry Pi 5 (8GB) running Homebridge to integrate non-HomeKit devices. It also serves as a precision NTP server using a <LinkWithIcon href='https://store.uputronics.com/products/raspberry-pi-gps-rtc-expansion-board' target='_blank'>Uputronics GPS module</LinkWithIcon>. + </p> + </section> + + {/* VPS */} + <section> + <h2>VPS</h2> + <p className="mb-4 leading-relaxed"> + Cheap Ionos VPS for services exposed to the internet. Mainly using it for hosting this website and Nextcloud. + </p> + </section> + </> + ); +}
\ No newline at end of file |
