"use client"; import { useEffect, useRef, useState } from "react"; type Item = { v: string; up?: boolean; label: string }; /** * A Bloomberg-style revenue ticker tape. Infinite CSS marquee with live- * feeling deltas. The visible tape is aria-hidden (decorative motion); a * single screen-reader summary conveys the same facts statically. * * Numbers are illustrative SAMPLES (matches the content note). */ const ITEMS: Item[] = [ { v: "+$2.41M", up: true, label: "Q ARR added" }, { v: "3.8×", up: true, label: "ROAS" }, { v: "−34%", up: true, label: "CPA" }, { v: "+217%", up: true, label: "Demo reqs" }, { v: "+183%", up: true, label: "Organic" }, { v: "+128", up: true, label: "Bookings/mo" }, { v: "+52%", up: true, label: "ROAS 90d" }, { v: "92%", up: true, label: "Retention" }, { v: "+$40M", up: true, label: "Client revenue" }, ]; export default function Ticker() { const [tick, setTick] = useState(0); const reduce = useRef(false); // gentle "last digit flicker" to feel live (skipped on reduced motion) useEffect(() => { reduce.current = window.matchMedia("(prefers-reduced-motion: reduce)").matches; if (reduce.current) return; const id = setInterval(() => setTick((t) => t + 1), 2600); return () => clearInterval(id); }, []); const Row = ({ aria }: { aria: boolean }) => (
Sample results across recent client programs: 3.8 times average return on ad spend, plus 217 percent qualified demo requests, plus 183 percent organic traffic, 92 percent client retention, and over 40 million dollars in client revenue generated.