Openstatus www.openstatus.dev
6
fork

Configure Feed

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

chore: small adjustments (#219)

authored by

Maximilian Kaske and committed by
GitHub
727b97bb 0c1cea18

+14 -12
+13 -6
apps/web/src/components/layout/marketing-footer.tsx
··· 11 11 export function MarketingFooter({ className }: Props) { 12 12 return ( 13 13 <footer className={cn("w-full", className)}> 14 - <Shell className="grid grid-cols-2 gap-6 md:grid-cols-3"> 14 + <Shell className="grid grid-cols-2 gap-6 md:grid-cols-4"> 15 15 <div className="flex flex-col gap-3 text-sm"> 16 - <p className="text-muted-foreground font-semibold">Twitter</p> 16 + <p className="text-foreground font-semibold">Twitter</p> 17 17 <FooterLink 18 18 href="https://twitter.com/thibaultleouay" 19 19 label="@thibaultleouay" ··· 21 21 <FooterLink href="https://twitter.com/mxkaske" label="@mxkaske" /> 22 22 </div> 23 23 <div className="flex flex-col gap-3 text-sm"> 24 - <p className="text-muted-foreground font-semibold">Community</p> 24 + <p className="text-foreground font-semibold">Community</p> 25 25 <FooterLink 26 26 href="https://github.com/openstatushq/openstatus" 27 27 label="GitHub" ··· 29 29 <FooterLink href="https://discord.gg/dHD4JtSfsn" label="Discord" /> 30 30 </div> 31 31 <div className="flex flex-col gap-3 text-sm"> 32 - <p className="text-muted-foreground font-semibold">More</p> 32 + <p className="text-foreground font-semibold">Resources</p> 33 + <FooterLink href="https://status.openstatus.dev" label="Status" /> 34 + <FooterLink href="/blog" label="Blog" /> 33 35 <FooterLink href="https://docs.openstatus.dev" label="Docs" /> 36 + </div> 37 + <div className="flex flex-col gap-3 text-sm"> 38 + <p className="text-foreground font-semibold">Legal</p> 34 39 <FooterLink href="/legal/terms" label="Terms" /> 35 40 <FooterLink href="/legal/privacy" label="Privacy" /> 36 41 </div> ··· 53 58 54 59 return ( 55 60 <LinkSlot 56 - className="text-foreground inline-flex items-center underline underline-offset-4 hover:no-underline" 61 + className="text-muted-foreground hover:text-foreground inline-flex items-center underline underline-offset-4 hover:no-underline" 57 62 href={href} 58 63 {...externalProps} 59 64 > 60 65 {label} 61 - {isExternal ? <ArrowUpRight className="ml-1 h-4 w-4" /> : null} 66 + {isExternal ? ( 67 + <ArrowUpRight className="ml-1 h-4 w-4 flex-shrink-0" /> 68 + ) : null} 62 69 </LinkSlot> 63 70 ); 64 71 }
-5
apps/web/src/components/layout/marketing-header.tsx
··· 18 18 > 19 19 <BrandName /> 20 20 <div className="flex items-center md:gap-3"> 21 - <Button variant="link" asChild> 22 - <Link href="/discord" target="_blank" rel="noreferrer"> 23 - Discord 24 - </Link> 25 - </Button> 26 21 <Button variant="link" asChild className="md:mr-3"> 27 22 <Link href="/blog">Blog</Link> 28 23 </Button>
+1 -1
apps/web/src/components/marketing/faqs.tsx
··· 25 25 }, 26 26 { 27 27 q: "How can I help?", 28 - a: "You can star our project on <a href='https://github.com/openstatusHQ/openstatus'>GitHub</a>, or contribute to it. Or you can also become a paid user.", 28 + a: "You can star our project on <a href='https://github.com/openstatusHQ/openstatus'>GitHub</a>, or contribute to it. Or you can also become a <strong>Pro</strong> user.", 29 29 }, 30 30 ]; 31 31