mirror of
https://github.com/NeonGamerBot-QK/saahild.com.git
synced 2024-11-11 08:02:25 +00:00
12 lines
295 B
TypeScript
12 lines
295 B
TypeScript
|
import "./style.css";
|
||
|
export default function Background() {
|
||
|
return (
|
||
|
<div style={{ filter: 'blur(10px)'}}>
|
||
|
<ul className="background">
|
||
|
{new Array(49).join('.').split('.').map((_,i) => {
|
||
|
return <li key={i} className={i % 2 === 0 ? "bg-effect" : ""}></li>
|
||
|
})}
|
||
|
</ul>
|
||
|
</div>
|
||
|
)
|
||
|
}
|