Update components/home/magicui/interactive-grid-pattern.tsx

This commit is contained in:
yoginawaka 2025-03-03 14:20:13 +00:00
parent 54da1aa02a
commit 58ded6c16f

View File

@ -40,7 +40,7 @@ export function InteractiveGridPattern({
width={width * horizontal}
height={height * vertical}
className={cn(
"absolute inset-0 h-full w-full border border-[#1DA2FF]/30",
"absolute inset-0 h-full w-full border border-[#F3BA2F]/30",
className
)}
{...props}
@ -56,9 +56,9 @@ export function InteractiveGridPattern({
width={width}
height={height}
className={cn(
"stroke-[#1DA2FF]/30 transition-all duration-100 ease-in-out [&:not(:hover)]:duration-1000",
"stroke-[#F3BA2F]/30 transition-all duration-100 ease-in-out [&:not(:hover)]:duration-1000",
hoveredSquare === index
? "fill-[#1DA2FF]/30"
? "fill-[#F3BA2F]/30"
: "fill-transparent",
squaresClassName
)}