diff --git a/src/app/components/Home.jsx b/src/app/components/Home.jsx index d8167e8..4d17bd9 100644 --- a/src/app/components/Home.jsx +++ b/src/app/components/Home.jsx @@ -238,10 +238,408 @@ // // ); // } +// import { Canvas } from "@react-three/fiber"; +// import { OrbitControls } from "@react-three/drei"; +// import { Sphere, Line } from "@react-three/drei"; +// import { useRef, useMemo } from "react"; +// import { useFrame } from "@react-three/fiber"; +// import { EffectComposer, Bloom } from "@react-three/postprocessing"; +// import { motion } from "framer-motion"; +// import Navbar from "./Navbar"; + +// const Glow = ({ className = "" }) => ( +//
+// ); + +// // Navbar placeholder + + +// function AnimatedNeuralNode({ position, color, size = 0.08, delay = 0 }) { +// const ref = useRef(); + +// useFrame((state) => { +// if (ref.current) { +// // Subtle pulsing animation with individual delay +// const time = state.clock.elapsedTime + delay; +// ref.current.scale.x = 1 + Math.sin(time * 2) * 0.15; +// ref.current.scale.y = 1 + Math.sin(time * 2) * 0.15; +// ref.current.scale.z = 1 + Math.sin(time * 2) * 0.15; +// } +// }); + +// return ( +//