12 lines
344 B
TypeScript
12 lines
344 B
TypeScript
export function HeroGlow() {
|
|
return (
|
|
<div
|
|
className="absolute top-0 left-1/2 -translate-x-1/2 w-full max-w-[1200px] h-[600px] pointer-events-none"
|
|
style={{
|
|
background:
|
|
'radial-gradient(ellipse at center top, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.1) 30%, transparent 70%)',
|
|
}}
|
|
/>
|
|
);
|
|
}
|