1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
import { useRef, useState } from "react";
import ExternalLinkIcon from "./ExternalLink";
interface Props {
title: string;
body: string;
href?: string;
imgSrc?: string;
}
export default function CardLink({ title, body, href, imgSrc }: Props) {
const divRef = useRef<HTMLDivElement>(null);
const [position, setPosition] = useState({ x: 0, y: 0 });
const [opacity, setOpacity] = useState(0);
const handleMouseMove: React.MouseEventHandler<HTMLDivElement> = (e) => {
if (!divRef.current) return;
const rect = divRef.current.getBoundingClientRect();
setPosition({ x: e.clientX - rect.left, y: e.clientY - rect.top });
};
const handleMouseEnter = () => setOpacity(0.6);
const handleMouseLeave = () => setOpacity(0);
return (
<div
ref={divRef}
className={`relative flex items-center gap-4 py-2 px-2 rounded-lg border border-neutral-300 dark:border-neutral-800 bg-neutral-100 dark:bg-neutral-900 overflow-hidden ${
href ? "cursor-pointer" : ""
}
[--spotlight-light:rgba(255,255,255,0.1)]
[--spotlight-dark:rgba(0,0,0,0.1)]`}
onMouseMove={handleMouseMove}
onMouseEnter={handleMouseEnter}
onMouseLeave={handleMouseLeave}
{...(href && {
onClick: () => window.open(href, "_blank", "noopener,noreferrer"),
role: "link",
tabIndex: 0,
})}
>
{/* Spotlight overlay - light */}
<div
className="pointer-events-none absolute inset-0 opacity-0 transition-opacity duration-300 ease-in-out"
style={{
opacity,
background: `radial-gradient(circle at ${position.x}px ${position.y}px,
var(--spotlight-light),
transparent 80%)`,
}}
/>
{/* Spotlight overlay - dark mode */}
<div
className="pointer-events-none absolute inset-0 opacity-0 transition-opacity duration-300 ease-in-out dark:block"
style={{
opacity,
background: `radial-gradient(circle at ${position.x}px ${position.y}px,
var(--spotlight-dark),
transparent 80%)`,
}}
/>
{/* Content */}
{imgSrc && (
<img
src={imgSrc}
className="w-20 h-20 object-cover rounded-lg transition-transform duration-200 hover:scale-105 z-10"
alt={title}
/>
)}
<div className="flex-1 z-10">
<h3 className="font-medium">{title}</h3>
<p className="text-sm text-neutral-800 dark:text-neutral-400">{body}</p>
</div>
{href && <div className="z-10"><ExternalLinkIcon /></div>}
</div>
);
}
|