import { useRef } from 'react'; import { Canvas, useFrame } from '@react-three/fiber'; import { Float, MeshDistortMaterial, Sphere, Environment, ContactShadows } from '@react-three/drei'; import * as THREE from 'three'; function NeuralOrb({ isLoading }) { const meshRef = useRef(); useFrame((state) => { if (meshRef.current) { // Rotation meshRef.current.rotation.x = state.clock.getElapsedTime() * 0.2; meshRef.current.rotation.y = state.clock.getElapsedTime() * 0.3; } }); return ( ); } export default function NeuralCore3D({ isLoading }) { return (
); }