Files
mb-grid-solutions.com/components/TechBackground.tsx
2026-01-29 01:34:31 +01:00

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>
);
};