Custom app launcher, browser home page, and service monitor. cute.haus
homelab react typescript
0

Configure Feed

Select the types of activity you want to include in your feed.

spruce up titles

Aly Raffauf (Apr 26, 2026, 12:18 PM EDT) a91d1383 aa585fd1

+8 -5
+5 -5
src/App.tsx
··· 23 23 24 24 <div className="grid gap-4 md:grid-cols-2"> 25 25 <div> 26 - <h2 className="text-2xl font-semibold text-white/70 mb-4"> 26 + <h2 className="section-heading mb-3"> 27 27 Lobsters 28 28 </h2> 29 29 <Lobsters /> 30 30 </div> 31 31 32 32 <div> 33 - <h2 className="text-2xl font-semibold text-white/70 mb-4"> 33 + <h2 className="section-heading mb-3"> 34 34 Hacker News 35 35 </h2> 36 36 <HackerNews /> 37 37 </div> 38 38 </div> 39 - <h2 className="text-2xl font-semibold text-white/70 mt-8 mb-4"> 39 + <h2 className="section-heading mt-10 mb-3"> 40 40 Websites 41 41 </h2> 42 42 <ServiceGrid services={websites} columns={2} /> 43 - <h2 className="text-2xl font-semibold text-white/70 mt-8 mb-4"> 43 + <h2 className="section-heading mt-10 mb-3"> 44 44 Public Apps 45 45 </h2> 46 46 <ServiceGrid services={apps} columns={4} /> 47 - <h2 className="text-2xl font-semibold text-white/70 mt-8 mb-4"> 47 + <h2 className="section-heading mt-10 mb-3"> 48 48 Tailnet Apps 49 49 </h2> 50 50 <ServiceGrid services={privateApps} columns={4} />
+3
src/index.css
··· 4 4 .card { 5 5 @apply bg-white/[0.03] border border-white/10 rounded-2xl shadow-lg shadow-black/20 backdrop-blur-sm; 6 6 } 7 + .section-heading { 8 + @apply text-xs uppercase tracking-[0.25em] text-zinc-400 font-semibold; 9 + } 7 10 } 8 11 9 12 body {