import React, { useState, useEffect } from 'react'; import { Cpu, Zap, Car, Paintbrush, Network, ArrowRight, Download, Star, ShieldCheck, Box, Terminal, Activity, Radio, ChevronRight } from 'lucide-react'; // --- CONFIGURAÇÃO VISUAL TRINITY --- const theme = { bg: "bg-[#020205]", glass: "bg-white/[0.03] backdrop-blur-xl border border-white/10", neonBlue: "text-cyan-400", neonPurple: "text-purple-400", neonGreen: "text-emerald-400", neonOrange: "text-amber-400", borderBlue: "border-cyan-500/30", borderPurple: "border-purple-500/30", gradientBlue: "from-cyan-500 to-blue-600", gradientTrinity: "from-purple-600 via-cyan-400 to-emerald-400" }; const App = () => { const [scrolled, setScrolled] = useState(false); const [tokenCount, setTokenCount] = useState(1420); // Efeito de scroll para o Header useEffect(() => { const handleScroll = () => setScrolled(window.scrollY > 50); window.addEventListener('scroll', handleScroll); // Simulação de fluxo de tokens const interval = setInterval(() => { setTokenCount(prev => prev + Math.floor(Math.random() * 5)); }, 3000); return () => { window.removeEventListener('scroll', handleScroll); clearInterval(interval); }; }, []); return (
{/* 1. HEADER DA LOJA (ESTILO COMANDO CENTRAL) */}

SensorIA Store

OSIA Trinity Core

TOKENS PROCESSADOS {tokenCount.toLocaleString('pt-BR')}
KERNEL v5.2 ONLINE
{/* 2. HERO: O MANIFESTO TRINITY */}
{/* Efeitos de Fundo */}
Ecossistema Sensorial 001

Inteligência que
Sente o Mundo Real.

O fim das interfaces estáticas. Bem-vindo aos Sensores Digitais que interpretam o plano físico através do Kernel Trinity.

{/* 3. VITRINE DE APPS (GRID) */}
{/* APP 01: PINTOR IA */}
Pintura IA
Live em Campo

Pintor IA Pro

Módulo: Estética Visual

Interpreta patologias de superfícies, calcula volumetria e gera orçamentos técnicos via Visão Computacional. O braço direito do profissional de pintura.

{[...Array(5)].map((_, i) => )}
{/* APP 02: AUTOMOTIZIA */}
AutomotizIA
Alpha Test

AutomotizIA

Módulo: Diagnóstico OBD2

O "Mecânico Digital" da Trinity. Conecta-se à telemetria veicular para prever falhas e otimizar a performance de frotas operacionais.

Kernel v1.0.4 Aguardando Sync
{/* APP 03: WZ ENTERPRISE */}

Infraestrutura Core

WZ Soluções

Parceiro Trinity Gold

A espinha dorsal da conectividade. Fornece o tráfego de dados e telefonia IP que sustenta a comunicação entre os sensores e a IA.

Sincronização de Rede Certificada
{/* 4. FOOTER: ESTADO DO SISTEMA */}
); }; export default App;