import SEO from '../../components/SEO'; import { useEffect, useRef } from 'react'; import { gsap } from 'gsap'; import { ScrollTrigger } from 'gsap/ScrollTrigger'; import { Monitor, Check, ArrowRight, Bell, Activity, LayoutDashboard } from 'lucide-react'; gsap.registerPlugin(ScrollTrigger); const servicos = [ { titulo: 'Monitoramento 24/7', descricao: 'Vigilância contínua da infraestrutura.', icon: Monitor }, { titulo: 'Alertas', descricao: 'Notificações em tempo real.', icon: Bell }, { titulo: 'Painéis em tempo real', descricao: 'Dashboards personalizados.', icon: LayoutDashboard }, ]; const beneficios = [ 'Prevenção de falhas', 'Resposta rápida', ]; const Noc = () => { const heroRef = useRef(null); const servicosRef = useRef(null); useEffect(() => { const ctx = gsap.context(() => { const heroItems = heroRef.current?.querySelectorAll('.animate-item'); if (heroItems?.length) { gsap.fromTo(heroItems, { y: 50, opacity: 0 }, { y: 0, opacity: 1, duration: 0.8, stagger: 0.1, ease: 'expo.out' }); } const servicoCards = servicosRef.current?.querySelectorAll('.servico-card'); if (servicoCards?.length) { gsap.fromTo(servicoCards, { y: 50, opacity: 0 }, { y: 0, opacity: 1, duration: 0.6, stagger: 0.1, ease: 'back.out(1.7)', scrollTrigger: { trigger: servicosRef.current, start: 'top 80%' } }); } }); return () => ctx.revert(); }, []); return (
{/* Hero */}
Serviços / NOC

Monitoramento e NOC

Visibilidade total da sua infraestrutura.

NOC
{/* Serviços */}

Nossos Serviços

{servicos.map((s, i) => (

{s.titulo}

{s.descricao}

))}
{/* Benefícios */}

Benefícios

{beneficios.map((b, i) => (
{b}
))}
{/* CTA */}

Tenha visibilidade total

Solicite uma proposta de monitoramento.

Solicitar proposta
); }; export default Noc;