// Winkz Designs 2026, portfolio website mockups. // Each renders a real desktop page at a shorter above-the-fold canvas, scaled to // fully fit the browser frame, a complete, crisp site thumbnail (no half-cut rows). (function () { const { useState, useEffect, useRef } = React; const Icon = window.Icon; const GRAD = 'linear-gradient(120deg,#F23BFE,#79BAFF,#2DE3EA)'; const Btn = (bg, color, text, extra = {}) => ( {text} ); function Frame({ url, secure = true, children }) { return (
{url}
{children}
); } /* Scales a real desktop page to fully fit the frame width, complete site thumbnail. */ function Screen({ w = 1240, h = 560, children }) { const ref = useRef(null); const [s, setS] = useState(0.3); useEffect(() => { const el = ref.current; if (!el) return; const upd = () => setS(el.clientWidth / w); upd(); const ro = new ResizeObserver(upd); ro.observe(el); return () => ro.disconnect(); }, [w]); return (
{children}
); } const nav = (bg, border) => ({ display: 'flex', alignItems: 'center', justifyContent: 'space-between', padding: '22px 44px', borderBottom: '1px solid ' + border, background: bg }); const links = (color) => ({ display: 'flex', gap: 30, fontSize: 18, color, alignItems: 'center' }); const pageStyle = (bg, color, font) => ({ width: '100%', height: '100%', background: bg, color, fontFamily: font }); /* 1, EVERMART · e-commerce */ function Evermart() { return (
evermart DealsCategoriesSellSearch…
Everything,
delivered tomorrow.
Millions of products. Free next-day over $35.
{Btn('#1a73e8', '#fff', 'Shop now')}{Btn('#fff', '#1a73e8', 'Today\u2019s deals', { border: '2px solid #d5e0f2' })}
-40%
Summer sale, ends soon
{['#ffd8b0', '#bcd6ff', '#b6f0d6'].map((c, i) =>
)}
); } /* 2, CLARITY HCM · payroll/HR platform (real client, mirrors clarity-hcm.com) */ function ClaritySite() { const emblem = (size) => ( ); return (
{emblem(29)}Clarity HCM PlatformProcessAboutClient login
{emblem(64)}
Every model · One source of truth
Clarity in every paycheck,
person, and decision.
Payroll, HR, benefits, time and talent on one platform, backed by a team that knows your business.
{['Payroll', 'Human resources', 'Time & attendance', 'Benefits', 'Talent'].map((m, i) => {m})}
); } /* 3, OSTERIA NOVE · restaurant */ function Osteria() { return (
OSTERIA NOVE MENUWINEVISIT
WOOD-FIRED · SINCE 1998
An evening worth staying for.
Seasonal Italian plates, an all-Italian cellar, and a room made for lingering.
{Btn('#d9a441', '#1c1206', 'Reserve a table', { fontFamily: 'var(--font-body)' })}View the menu →
); } /* 4, VANTAGE REALTY · real estate */ function Vantage() { return (
Vantage. BuySellAgentsList with us
Find the one.
1,200+ homes across the metro.
Kirkwood, Atlanta Beds ▾Price ▾ Search
{[['$740k', '4 bd · Kirkwood', '#274b6e'], ['$525k', '3 bd · Decatur', '#3a5a7a'], ['$960k', '5 bd · Buckhead', '#2c6a8f']].map((p, i) => (
{i === 0 && NEW}
{p[0]}
{p[1]}
))}
); } /* 5, FORGE FITNESS · gym */ function Forge() { return (
FORGEClassesCoachesPlans Join now
TRAIN LIKE
IT MATTERS.
{Btn('#c6ff2e', '#0a0a0a', 'Start free', { fontFamily: 'var(--font-body)', textTransform: 'uppercase', letterSpacing: '0.04em' })}7-day pass · no card
{[['06:00', 'Strength & Power'], ['12:30', 'HIIT Burn'], ['18:00', 'Olympic Lifting']].map((c, i) => (
{c[0]} {c[1]}
))}
); } /* 6, LUMEN LAW · legal */ function LumenLaw() { return (
LUMEN LAW PracticeTeamResultsConsult
Counsel you can trust.
Three decades protecting businesses & families across the state.
{Btn('#12233b', '#fff', 'Book a consult', { fontFamily: 'var(--font-body)' })}
{[['500+', 'Cases won'], ['30 yr', 'Experience'], ['4.9★', 'Rating']].map((s, i) =>
{s[0]}
{s[1]}
)}
); } /* dark, on-brand website hero (home collage) */ function DarkSite() { return (
Nova ProductPricingDocs
Launch faster,
scale smarter.
The platform built for teams that ship.
{Btn(GRAD, '#08080A', 'Get started')}{Btn('rgba(255,255,255,0.05)', '#dde', 'Live demo', { border: '1px solid rgba(255,255,255,0.18)' })}
); } /* SPCR GROUP, real client, actual site screenshot */ function SPCR() { return (
SPCR Group, live site
); } Object.assign(window, { Evermart, ClaritySite, Osteria, Vantage, Forge, LumenLaw, DarkSite, SPCR }); })();