import Image from "next/image"; import { SectionShell } from "@/components/ui/SectionShell"; import { SectionKicker } from "@/components/ui/SectionKicker"; import { Reveal } from "@/components/ui/Reveal"; import { Video } from "@/components/ui/Video"; import { media } from "@/lib/assets"; type Option = { tag: string; title: string; body: string; image: { src: string; alt: string } }; const OPTIONS: Option[] = [ { tag: "new", title: "Stunning new colors", body: "Crystal Clear reveals the intricate inner workings of the headset, while Nuclear Orange delivers a shockingly vibrant finish. Like Beyond 1, Beyond 2 is also available in Carbon Black.", image: { src: media.colors, alt: "Beyond 2 in Crystal Clear and Nuclear Orange finishes" }, }, { tag: "new", title: "Universal-fit Halo Mount", body: "With a floating design inspired by tactical night vision goggles, the Halo Mount rests gently on your forehead with adjustable eye relief and tilt. No iPhone Face Scan needed for the universal-fit Lightseal.", image: { src: media.haloMount, alt: "Beyond 2 universal-fit Halo Mount" }, }, ]; /** * Adjustment / fit — the customization story on a white plate (the original's * light contrast moment). Centered "/ CUSTOMIZE YOUR EXPERIENCE" intro, the IPD * footage, a two-tone fit statement, the new color + mount options, and the full * headset showcase to close. */ export function Adjustment() { return ( Adjustable IPD {/* IPD footage */}
{/* two-tone fit statement */}

Tailor your fit with Beyond 2

VR is deeply personal. With Beyond 2, customization goes further with new options for straps, cushions, and colors. Fine-tune your headset for unmatched comfort across long-duration sessions.

{/* options */}
{OPTIONS.map((o, i) => (
{o.image.alt} {o.tag}

{o.title}

{o.body}

))}
{/* compatibility statement */} Beyond 2 is compatible with your customizations from Beyond.{" "} Straps, cushions, or your own mods, it works. {/* full headset showcase */}
The complete Beyond 2 headset with strap
); }