// Winkz Designs 2026, INDUSTRIES (who we serve, wide) (function () { const { Icon, Reveal, Eyebrow, SectionHead, Panel, Section, Grad } = window; const GRAD = 'linear-gradient(120deg,#F23BFE,#79BAFF,#2DE3EA)'; const IND_COLORS = ['#2DE3EA', '#F23BFE', '#79BAFF']; const INDUSTRIES = [ ['ShoppingBag', 'E-commerce & retail', 'Storefronts that load fast, convert and stay easy to run.', 'niche-ecommerce'], ['Wrench', 'Home & local services', 'Trades, contractors and clinics, sites that book jobs and answer calls.', 'niche-home-services'], ['Scale', 'Professional services', 'Legal, accounting and finance teams that need to look sharp and move fast.', 'niche-professional-services'], ['Rocket', 'Startups & SaaS', 'From landing page to product UI to the systems that scale behind it.', 'niche-startups'], ['User', 'Personal & creator brands', 'Founders and creators who need a brand that carries their name.', 'niche-personal-brands'], ['HeartPulse', 'Health & wellness', 'Practices and wellness brands that need trust built into every pixel.', 'niche-health-wellness'], ['Building2', 'Real estate & property', 'Listings, agents and developments presented like the asset they are.', 'niche-real-estate'], ['UtensilsCrossed', 'Hospitality & food', 'Restaurants and venues with sites that fill tables and rooms.', 'niche-restaurants'], ['Plus', 'And more', "Nonprofits, education, manufacturing, entertainment. If you run a business, we've likely built for one like it, or we'll be the first.", null], ]; const WHY = [ ['Layers', 'One team, whole stack', 'Design, code and AI under one roof, nothing lost in a handoff.'], ['Gauge', 'Built to ship', 'We measure success by what goes live, not what gets presented.'], ['Lock', 'You own it', 'Your site, your data, your CRM, plain-English docs, no lock-in.'], ['Users', 'Senior, always', 'The people you meet are the people who build it.'], ]; function IndustriesPage({ onNavigate }) { return (
Who we serve

Any business. Any ambition.

We're not locked to one niche. If you sell something, serve someone or want to grow, we've built for a business like yours.

{INDUSTRIES.map((s, i) => { const c = IND_COLORS[i % IND_COLORS.length]; const last = i === INDUSTRIES.length - 1; return ( onNavigate(s[3]) : undefined} style={{ height: '100%', cursor: s[3] ? 'pointer' : 'default', ...(last ? { borderStyle: 'dashed', background: 'transparent' } : {}) }}>

{s[1]}

{s[2]}

{s[3] && Learn more }
); })}
The same reasons, whatever you do.} center max={620} />
{WHY.map((w, i) => (

{w[1]}

{w[2]}

))}

Don't see your industry?

Good, that means room to stand out. Let's talk about what you're building.

); } window.IndustriesPage = IndustriesPage; })();