Last active
July 16, 2025 09:20
-
-
Save ripgrim/0ad9b25417980385a93b19b20ce6e575 to your computer and use it in GitHub Desktop.
Backed by GCombinator Badge
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { cn } from "@/lib/utils"; | |
import { GCombinator } from "@/components/icons/g-combinator"; | |
/** | |
* Usage: | |
* <BackedByBadge /> | |
*/ | |
export function BackedByBadge() { | |
return ( | |
<div className={cn( | |
"inline-flex items-center gap-1 backdrop-blur-xs bg-gradient-to-br from-white/8 to-white/4 border border-white/8 rounded-full px-4 py-1.5 text-sm mb-6" | |
)}> | |
Backed by | |
<span className="flex items-center gap-0.75 ml-0.5 text-xs"> | |
<GCombinator /> | |
<span className="text-xs">Combinator</span> | |
</span> | |
</div> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment