Skip to content

Commit defe992

Browse files
committed
Remove decorative crosshair lines from profile avatar
1 parent 5cc643a commit defe992

1 file changed

Lines changed: 1 addition & 15 deletions

File tree

components/spotlight-avatar.tsx

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -80,21 +80,7 @@ export function SpotlightAvatar({ src, alt, size = 180 }: SpotlightAvatarProps)
8080
/>
8181
</div>
8282

83-
{/* Crosshair decorations */}
84-
<svg
85-
className="absolute inset-0 w-full h-full pointer-events-none"
86-
viewBox="0 0 100 100"
87-
aria-hidden="true"
88-
>
89-
{/* Top tick */}
90-
<line x1="50" y1="8" x2="50" y2="14" stroke="hsl(var(--muted-foreground))" strokeWidth="0.3" opacity="0.4" />
91-
{/* Bottom tick */}
92-
<line x1="50" y1="86" x2="50" y2="92" stroke="hsl(var(--muted-foreground))" strokeWidth="0.3" opacity="0.4" />
93-
{/* Left tick */}
94-
<line x1="8" y1="50" x2="14" y2="50" stroke="hsl(var(--muted-foreground))" strokeWidth="0.3" opacity="0.4" />
95-
{/* Right tick */}
96-
<line x1="86" y1="50" x2="92" y2="50" stroke="hsl(var(--muted-foreground))" strokeWidth="0.3" opacity="0.4" />
97-
</svg>
83+
9884
</motion.div>
9985
);
10086
}

0 commit comments

Comments
 (0)