Skip to content

Instantly share code, notes, and snippets.

@ripgrim
Last active July 16, 2025 09:20
Show Gist options
  • Save ripgrim/0ad9b25417980385a93b19b20ce6e575 to your computer and use it in GitHub Desktop.
Save ripgrim/0ad9b25417980385a93b19b20ce6e575 to your computer and use it in GitHub Desktop.
Backed by GCombinator Badge
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