'use client'; import React, { useEffect, useState } from 'react'; import { motion } from 'framer-motion'; export const TechBackground = () => { const [mounted, setMounted] = useState(false); useEffect(() => { setMounted(true); }, []); if (!mounted) { return (
); } return (
{/* Animated Tech Lines */} {[...Array(5)].map((_, i) => ( ))} {/* Floating Tech Squares */} {[...Array(8)].map((_, i) => ( ))} {/* Pulsing Dots */} {[...Array(15)].map((_, i) => ( ))}
); };