22 lines
575 B
TypeScript
22 lines
575 B
TypeScript
'use client';
|
|
|
|
import React from 'react';
|
|
|
|
export const TechBackground = () => {
|
|
return (
|
|
<div className="absolute inset-0 pointer-events-none overflow-hidden z-0">
|
|
{/* Very subtle large grid */}
|
|
<div
|
|
className="absolute inset-0 opacity-[0.05]"
|
|
style={{
|
|
backgroundImage: `
|
|
linear-gradient(to right, var(--color-accent) 1px, transparent 1px),
|
|
linear-gradient(to bottom, var(--color-accent) 1px, transparent 1px)
|
|
`,
|
|
backgroundSize: '120px 120px'
|
|
}}
|
|
/>
|
|
</div>
|
|
);
|
|
};
|