mirror of
https://github.com/prompt-security/clawsec.git
synced 2026-06-13 05:28:02 +03:00
25 lines
1.1 KiB
TypeScript
25 lines
1.1 KiB
TypeScript
import React from 'react';
|
|
|
|
export const LobsterBackground: React.FC = () => {
|
|
return (
|
|
<div className="fixed inset-0 pointer-events-none z-0 overflow-hidden select-none">
|
|
<div className="absolute inset-0 bg-gradient-to-r from-[#0d0720]/70 via-transparent to-transparent" />
|
|
{/* Soft nebula glows */}
|
|
<div className="absolute -top-20 -left-28 w-[38vw] h-[38vw] bg-[#8c6ae7] blur-[140px] opacity-35"></div>
|
|
<div className="absolute top-[10%] right-[-10%] w-[42vw] h-[42vw] bg-[#523899] blur-[180px] opacity-30"></div>
|
|
<div className="absolute bottom-[-12%] left-[15%] w-[48vw] h-[48vw] bg-[#26115d] blur-[200px] opacity-55"></div>
|
|
<div className="absolute top-[40%] right-[20%] w-[35vw] h-[35vw] bg-[#3a1f7a] blur-[160px] opacity-28"></div>
|
|
|
|
{/* Angular motif inspired by Prompt "A" */}
|
|
<div className="absolute right-[-5%] bottom-[10%] w-[59.8vw] h-[59.8vw] opacity-85">
|
|
<img
|
|
src="/img/prompt_line.svg"
|
|
loading="lazy"
|
|
alt=""
|
|
className="w-full h-full object-contain"
|
|
/>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|