// ============================================================ // About page - studio story + video link // ============================================================ const ABOUT_VIDEO_URL = 'https://www.youtube.com/@freshwavefinds'; const ABOUT_CONNECT = ['Instagram', 'TikTok', 'YouTube', 'Discord', 'WhatsApp']; const ABOUT_VALUES = [ { title: 'Proof on camera', body: 'Finished pieces, material tests and glow demos get documented so customers can see how the work behaves in real light.', accent: 'cyan', details: [ 'Photos, clips and demos show how pieces look outside a perfect product mockup.', 'Glow tests, material behavior and finished surfaces get shown so customers can judge the work with context.', 'The goal is simple: no mystery box energy. You should know what the bench can actually produce.', ], }, { title: 'Collector-first finish', body: 'Edges, surface feel, color and coating get treated like part of the product, not the afterthought after printing.', accent: 'magenta', details: [ 'The finish is planned as part of the object, not rushed after the printer stops.', 'Edges, touch points, coating and display presence matter because customers are buying a finished piece, not just machine time.', 'Every tier still needs to feel intentional enough to hold up on a shelf, in a hand, or under a camera.', ], }, { title: 'Human quote process', body: 'The form starts the brief, then the final quote gets confirmed by hand so oddball ideas still fit the right scope.', accent: 'vapor-purple', details: [ 'The form collects the basics, but the actual scope gets reviewed before anyone moves forward.', 'Size, finish, quantity, material choice and reference details all affect the real quote.', 'That human check keeps weird ideas possible without pretending every project fits a flat-price menu.', ], }, ]; function AboutPage() { const [activeValue, setActiveValue] = useState(null); return (
About FreshWave

Small-batch prints with arcade-shelf energy.

FreshWave Digital Studio is a one-at-a-time 3D print bench for character figures, vintage replicas, fidget toys and display pieces. The goal is simple: make pieces that feel collected, handled and cared for, not churned out.

The work sits between maker culture and collector culture: resin detail where it matters, durable parts when motion matters, and glow features when the piece deserves a night mode.

Build demos

Watch the bench work

Demo clips, glow tests, tolerance checks and print reveals for Instagram, TikTok and YouTube.

How we show up

Transparent enough to trust. Weird enough to remember.

{ABOUT_VALUES.map((item) => ( ))}
Connect

Follow the drops and ask questions where you already hang out.

{ABOUT_CONNECT.map((label) => ( e.preventDefault()} className="rounded-md border border-border bg-card px-4 py-3 font-mono text-xs uppercase tracking-[0.18em] text-muted-foreground transition-colors hover:border-primary hover:text-primary"> {label} ))}
{activeValue && setActiveValue(null)} />}
); } function AboutValueModal({ value, onClose }) { useEffect(() => { const onKey = (e) => { if (e.key === 'Escape') onClose(); }; document.addEventListener('keydown', onKey); document.body.style.overflow = 'hidden'; return () => { document.removeEventListener('keydown', onKey); document.body.style.overflow = ''; }; }, [onClose]); const color = accentHsl(value.accent); return (
e.stopPropagation()} >
Transparency standard

{value.title}

{value.body}

{value.details.map((detail, idx) => (
{String(idx + 1).padStart(2, '0')}

{detail}

))}
); } Object.assign(window, { AboutPage });