// Winkz Designs 2026, ABOUT (function () { const { Icon, Reveal, Counter, Eyebrow, SectionHead, Panel, Section, Grad } = window; const GRAD = 'linear-gradient(120deg,#F23BFE,#79BAFF,#2DE3EA)'; const STATS = [[150, '+', 'Projects shipped'], [98, '%', 'Client retention'], [5, '+', 'Years in business'], [40, '+', 'Industries served']]; const TIMELINE = [ ['2021', 'The studio opens', 'Winkz Designs starts with one belief: good design should ship, not sit in a folder.'], ['2023', 'Beyond the website', 'We add brand systems and custom software, building the tools behind the sites, not just the sites.'], ['2025', 'The AI layer', 'Support chats, voice agents and automations join the stack as clients ask for systems that run themselves.'], ['2026', 'Wide open', 'One studio serving every kind of business, from local trades to funded startups.'], ]; const VALUES = [ ['Ship it', 'Real, live work beats the best-looking deck every time.'], ['Own it', 'You keep your site, data and systems. No hostage situations.'], ['Say it straight', "We tell you what will work and what won't, before you pay for it."], ]; function AboutPage({ onNavigate }) { return (
About

A studio built to make things real.

Winkz Designs is a small, senior team that designs and builds websites, brands, software and AI systems, and then hands you something that works.

{/* stats */}
{STATS.map((s, i) => (
{s[2]}
))}
{/* founder */}
Tyler Winkler, Founder & CEO
Founder & CEO

Tyler Winkler

"I started Winkz because too many businesses were paying for design that never launched. We flipped it, every engagement ends with something real, live and yours. Whether you need a site, a brand, a CRM or an AI that answers your phones, the goal is the same: ship it, and make it work."

{/* values */}
Three rules we don't break.} max={560} />
{VALUES.map((v, i) => (
0{i + 1}

{v[0]}

{v[1]}

))}
{/* timeline */}
From one site to the whole stack.} max={560} />
{TIMELINE.map((t, i) => (
{t[0]}

{t[1]}

{t[2]}

))}
); } window.AboutPage = AboutPage; })();