Openstatus www.openstatus.dev

chore: add links to light version (#1108)

authored by

Maximilian Kaske and committed by
GitHub
644b71d3 4353c6c4

+14 -4
+8
apps/web/src/app/play/page.tsx
··· 3 3 Clock, 4 4 FileCode, 5 5 Gauge, 6 + Package, 6 7 Palette, 7 8 PanelTop, 8 9 Table, ··· 65 66 title: "cURL Builder", 66 67 description: "Easily generate curl commands to test your API endpoints.", 67 68 icon: Terminal, 69 + }, 70 + { 71 + href: "https://light.openstatus.dev", 72 + title: "Vercel Edge Ping", 73 + description: 74 + "Lightweight one-click self-hostable checker for vercel's edge network.", 75 + icon: Package, 68 76 }, 69 77 { 70 78 href: "/public/monitors/1",
+6 -4
apps/web/src/components/layout/marketing-footer.tsx
··· 52 52 <FooterLink href="/play/checker" label="Speed Checker" /> 53 53 <FooterLink href="/play/curl" label="cURL Builder" /> 54 54 <FooterLink href="https://openstat.us" label="All Status Codes" /> 55 + <FooterLink 56 + href="https://light.openstatus.dev" 57 + label="Vercel Edge Ping" 58 + /> 55 59 </div> 56 60 </div> 57 61 <div className="flex items-center justify-between gap-3"> ··· 87 91 88 92 return ( 89 93 <Link 90 - className="inline-flex w-fit items-center text-muted-foreground underline underline-offset-4 hover:text-foreground hover:no-underline" 94 + className="flex flex-wrap gap-1 w-fit items-center text-muted-foreground underline underline-offset-4 hover:text-foreground hover:no-underline" 91 95 href={href} 92 96 {...externalProps} 93 97 > 94 98 {label} 95 - {isExternal ? ( 96 - <ArrowUpRight className="ml-1 h-4 w-4 flex-shrink-0" /> 97 - ) : null} 99 + {isExternal ? <ArrowUpRight className="h-4 w-4 flex-shrink-0" /> : null} 98 100 </Link> 99 101 ); 100 102 }