/* global React, Reveal */ // ========================================================= // WALL (landing variant) โ€” identical to the home-page Wall, // trimmed to five students for the paid-traffic page: // Alan, Anastasia, Nikolina, Tariq, and Simon & Kim. // Home page keeps the full wall. // ========================================================= function WallLanding({ onBook }) { const items = [ { name: "Alan W.", product: "personal care", year: "'21", tag: "1:1", src: "assets/student-alan.jpg", pos: "50% 40%" }, { name: "Anastasia M.", product: "health & beauty", year: "'21", tag: "1:1", src: "assets/student-anastasia.jpg", pos: "55% 35%" }, { name: "Nikolina H.", product: "office & stationary", year: "'26", tag: "Cohort", src: "assets/student-nikolina.jpg", pos: "50% 35%" }, { name: "Tariq B.", product: "amazon consulting", year: "'22", tag: "1:1", src: "assets/student-tariq.jpg", pos: "50% 30%" }, { name: "Simon & Kim", product: "pets & baby", year: "'26", tag: "Cohort", src: "assets/student-simon-kim.jpg", pos: "55% 35%" }, ]; return (
The wall

Real people.
Real products.

Not testimonials. Not stock photos. Every face below said "I don't know if I can do this" โ€” and then watched their dashboard prove them wrong.
{items.map((s, i) => (
{s.tag}
{s.src ? ( {`${s.name} ) : (
[ photo ยท {s.name} with product ]
)}
{s.name} {s.year}
{s.product}
))}
100+ more, building right now.
{ e.preventDefault(); onBook && onBook(); }}> Book your free discovery call โ†’
); } Object.assign(window, { WallLanding });