import { Container } from "@/components/ui/Container"; import { MonoTick } from "@/components/ui/MonoTick"; import { Button } from "@/components/ui/Button"; import { Reveal } from "@/components/ui/Reveal"; type Model = { numeral: string; price: string; blurb: string; }; const MODELS: Model[] = [ { numeral: "2", price: "From $1,019", blurb: "Next-gen optics, adjustable IPD, and a 116° field of view, at 107 grams." }, { numeral: "2e", price: "From $1,219", blurb: "Everything in Beyond 2, plus integrated eyetracking and foveated rendering." }, ]; /** * Closing order band — the original's "Ready to go Beyond?" choice. Two model * columns share the violet-dash wordmark, each with its price and order action. * Black stage; the violet signal lives in the dash and the CTA. */ export function CtaBand({ orderHref }: { orderHref: string }) { return (
Ready to go Beyond? Choose between Beyond 2 or Beyond 2e.
{MODELS.map((m, i) => (
Beyond {m.numeral}
{m.price}

{m.blurb}

))}
↳ SHIPS Q3 2026 · FREE SHIPPING
); }