import Image from "next/image"; import { SectionShell } from "@/components/ui/SectionShell"; import { Eyebrow } from "@/components/ui/Eyebrow"; import { Reveal } from "@/components/ui/Reveal"; import { media } from "@/lib/assets"; type Quote = { quote: string; outlet: string; image: string }; const QUOTES: Quote[] = [ { quote: "The Bigscreen Beyond 2's next-gen optics set a new bar for PC VR. Sharp clarity, wide FOV, zero eye strain. This is the ultimate sim racing headset.", outlet: "Optimum", image: media.press[0], }, { quote: "With virtually no glare, sharp optics, and an ultra-light custom fit, the Bigscreen Beyond 2 is one of the most immersive PC VR headsets I've ever tested.", outlet: "Tested", image: media.press[1], }, { quote: "I saw fewer distracting internal reflections, and the area of clarity is huge. This device is built for people who want to spend many hours in incredible places.", outlet: "UploadVR", image: media.press[2], }, { quote: "Beyond 2 fixes almost every major complaint I had: a wider 116° FOV, per-eye IPD adjustment, and lenses that banish glare and distracting reflections.", outlet: "Thrillseeker", image: media.press[3], }, ]; const LOGOS: { src: string; alt: string }[] = [ { src: media.logos[0], alt: "UploadVR" }, { src: media.logos[1], alt: "Forbes" }, { src: media.logos[2], alt: "Road to VR" }, { src: media.logos[3], alt: "The Verge" }, ]; /** * Press — what reviewers said. Centered "/ PRESS" kicker, four testimonial cards * pairing the outlet's still with a pull-quote, then a quiet row of outlet logos. * Black stage; the imagery carries the credibility, no color competes. */ export function Press() { return ( PRESS

What people are saying

{QUOTES.map((q, i) => (
{`${q.outlet}
{q.outlet}

“{q.quote}”

))}
{LOGOS.map((l) => (
{l.alt}
))}
); }