'use client'; import { motion, useScroll, useTransform } from 'framer-motion'; import { useRef } from 'react'; export default function Hero() { const containerRef = useRef(null); const { scrollYProgress } = useScroll({ target: containerRef, offset: ['start start', 'end start'], }); const opacity = useTransform(scrollYProgress, [0, 0.5], [1, 0]); const scale = useTransform(scrollYProgress, [0, 0.5], [1, 0.8]); const y = useTransform(scrollYProgress, [0, 1], [0, 200]); return (
Artificial Intelligence Researcher ARCHITECTING The Cognitive Future

Pioneering neural architectures and generative systems. Bridging the gap between theoretical research and production-grade scalability.

{/* Scroll Indicator */} Scroll to Explore
); }