MCPcopy Create free account
hub / github.com/CodeGraphContext/CodeGraphContext / GlassCard

Function GlassCard

website/src/components/GlassCard.tsx:11–28  ·  view source on GitHub ↗
({
  children,
  className,
  glowColor = "none",
  hoverable = true,
}: GlassCardProps)

Source from the content-addressed store, hash-verified

9}
10
11const GlassCard = ({
12 children,
13 className,
14 glowColor = "none",
15 hoverable = true,
16}: GlassCardProps) => {
17 return (
18 <div
19 className={cn(
20 "bg-black border border-white/10 rounded-3xl transition-all duration-300",
21 hoverable ? "hover:border-purple-500/40 hover:bg-purple-500/5" : "",
22 className
23 )}
24 >
25 {children}
26 </div>
27 );
28};
29
30export default GlassCard;

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected