import { useEffect, useRef } from 'react'; import { Brain, Wifi, Eye } from 'lucide-react'; const features = [ { icon: Brain, title: 'Inteligente', description: 'Tecnologia de ponta integrada em um design ergonômico e leve. Processamento avançado para análise em tempo real.', color: 'orange', }, { icon: Wifi, title: 'Conectado', description: 'Sincronização perfeita com seu smartphone para análise completa dos seus treinos e progresso.', color: 'teal', }, { icon: Eye, title: 'Em Tempo Real', description: 'Visualize suas métricas sem tirar os olhos do caminho. Display HUD de alta definição sempre visível.', color: 'cyan', }, ]; export function About() { const sectionRef = useRef(null); useEffect(() => { const observer = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const elements = entry.target.querySelectorAll('.reveal-card'); elements.forEach((el, index) => { setTimeout(() => { el.classList.add('animate-fade-in-up'); }, index * 100); }); observer.unobserve(entry.target); } }); }, { threshold: 0.2 } ); if (sectionRef.current) { observer.observe(sectionRef.current); } return () => observer.disconnect(); }, []); const getColorClasses = (color: string) => { const colors: Record = { orange: { bg: 'bg-orange-500/10', text: 'text-orange-400', border: 'border-orange-500/30' }, teal: { bg: 'bg-teal-500/10', text: 'text-teal-400', border: 'border-teal-500/30' }, cyan: { bg: 'bg-cyan-500/10', text: 'text-cyan-400', border: 'border-cyan-500/30' }, }; return colors[color] || colors.orange; }; return (
{/* Section Header */}

Sobre o Produto

{/* Features Grid */}
{features.map((feature, index) => { const colors = getColorClasses(feature.color); const Icon = feature.icon; return (
{/* Icon */}
{/* Content */}

{feature.title}

{feature.description}

{/* Hover Glow */}
); })}
{/* Description Box */}

O VisionRun Pro é um óculos inteligente desenvolvido para auxiliar corredores durante seus treinos. Ele permite visualizar informações importantes em tempo real, sem a necessidade de olhar para o celular.

); }