Files
my-portfolio/src/sections/Uptime.tsx
T
Space-Banane 2045e95929
Build Check / build (push) Successful in 45s
Build Check / push-image (push) Successful in 53s
Build Check / deploy-coolify (push) Successful in 6s
fix: remove unnecessary max-width classes from various components
feat: add launch configuration for development environment
2026-07-08 18:55:33 +02:00

40 lines
1.6 KiB
TypeScript

"use client";
export function Uptime() {
return (
<section className="w-full max-w-6xl mx-auto space-y-8 px-4 sm:space-y-10">
<div className="text-center space-y-4">
<h2 className="text-2xl font-bold text-transparent bg-clip-text bg-gradient-to-r from-blue-400 to-purple-500 sm:text-3xl">
Downtime
</h2>
<p className="mx-auto max-w-2xl text-sm text-gray-400 sm:text-base">
I love selfhosting stuff, can you tell?
</p>
</div>
<div className="mx-auto max-w-3xl">
<div className="w-full rounded-2xl border border-white/6 bg-gradient-to-br from-gray-800/20 to-transparent p-5 backdrop-blur-sm sm:p-6">
<h3 className="mb-4 text-center text-xl font-semibold text-white sm:text-2xl">
Github vs HomeLab Uptime
</h3>
<div className="flex flex-col items-center justify-between gap-6 sm:flex-row">
<div className="flex-1 text-center">
<img src="/gh_down.png" alt="GitHub downtime" className="mx-auto h-24 object-contain sm:h-28" />
<h4 className="mt-3 font-medium text-white">GitHub</h4>
<p className="text-gray-400 mt-1">Goes down more.</p>
</div>
<div className="h-px w-24 bg-white/6 sm:h-24 sm:w-px" />
<div className="flex-1 text-center">
<img src="/homelab_down.png" alt="HomeLab" className="mx-auto h-24 object-contain sm:h-28" />
<h4 className="mt-3 font-medium text-white">HomeLab</h4>
<p className="text-gray-400 mt-1">Goes down less.</p>
</div>
</div>
</div>
</div>
</section>
);
}