import { useRef } from 'react'; import { useFrame } from '@react-three/fiber'; import { Float, Box, Edges } from '@react-three/drei'; import * as THREE from 'three'; export const Chip3D = () => { const meshRef = useRef(null); useFrame((state) => { if (meshRef.current) { meshRef.current.rotation.y = state.clock.getElapsedTime() * 0.2; } }); return ( {/* Base Substrate - Dark Silicon */} {/* Die logic layer */} {/* Top Active Matrix - Glowing */} {/* Floating AI logic fragments */} {[[-1, 1, -1], [1, 1, 1], [-1, 1, 1], [1, 1, -1]].map((pos, i) => ( ))} ); };