revops + onboarding
This commit is contained in:
BIN
output/imagegen/onboarding-mockup-v1.png
Normal file
BIN
output/imagegen/onboarding-mockup-v1.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1014 KiB |
776
output/paused-qr-preview/index.html
Normal file
776
output/paused-qr-preview/index.html
Normal file
@@ -0,0 +1,776 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>QR Code is paused</title>
|
||||
<style>
|
||||
:root {
|
||||
--bg: #f5f7fb;
|
||||
--bg-2: #edf2f8;
|
||||
--panel: rgba(255, 255, 255, 0.72);
|
||||
--panel-strong: rgba(255, 255, 255, 0.84);
|
||||
--line: rgba(148, 163, 184, 0.24);
|
||||
--text: #0f172a;
|
||||
--muted: #667085;
|
||||
--soft: #94a3b8;
|
||||
--blue: #2563eb;
|
||||
--blue-soft: rgba(37, 99, 235, 0.14);
|
||||
--amber: #f59e0b;
|
||||
--amber-soft: rgba(245, 158, 11, 0.14);
|
||||
--shadow: 0 40px 120px rgba(15, 23, 42, 0.12);
|
||||
--shadow-soft: 0 24px 70px rgba(148, 163, 184, 0.16);
|
||||
--radius-xl: 34px;
|
||||
--radius-lg: 24px;
|
||||
--radius-md: 18px;
|
||||
--ease: cubic-bezier(.22, 1, .36, 1);
|
||||
}
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html,
|
||||
body {
|
||||
margin: 0;
|
||||
min-height: 100%;
|
||||
background:
|
||||
radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.95), transparent 28%),
|
||||
radial-gradient(circle at 85% 18%, rgba(37, 99, 235, 0.08), transparent 24%),
|
||||
radial-gradient(circle at 50% 82%, rgba(245, 158, 11, 0.08), transparent 20%),
|
||||
linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
|
||||
color: var(--text);
|
||||
font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
body::before,
|
||||
body::after {
|
||||
content: "";
|
||||
position: fixed;
|
||||
inset: auto;
|
||||
pointer-events: none;
|
||||
filter: blur(80px);
|
||||
opacity: 0.9;
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
body::before {
|
||||
width: 24rem;
|
||||
height: 24rem;
|
||||
top: 6rem;
|
||||
right: -6rem;
|
||||
background: rgba(37, 99, 235, 0.13);
|
||||
animation: drift 18s ease-in-out infinite alternate;
|
||||
}
|
||||
|
||||
body::after {
|
||||
width: 20rem;
|
||||
height: 20rem;
|
||||
bottom: 2rem;
|
||||
left: -4rem;
|
||||
background: rgba(245, 158, 11, 0.09);
|
||||
animation: drift 22s ease-in-out infinite alternate-reverse;
|
||||
}
|
||||
|
||||
.grain {
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
pointer-events: none;
|
||||
opacity: 0.06;
|
||||
z-index: 0;
|
||||
background-image:
|
||||
linear-gradient(rgba(15, 23, 42, 0.08) 1px, transparent 1px),
|
||||
linear-gradient(90deg, rgba(15, 23, 42, 0.08) 1px, transparent 1px);
|
||||
background-size: 4px 4px;
|
||||
mix-blend-mode: soft-light;
|
||||
}
|
||||
|
||||
.shell {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
min-height: 100vh;
|
||||
padding: 28px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.frame {
|
||||
width: min(1320px, 100%);
|
||||
min-height: min(860px, calc(100vh - 56px));
|
||||
padding: 28px;
|
||||
border-radius: 42px;
|
||||
position: relative;
|
||||
background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.36));
|
||||
border: 1px solid rgba(255, 255, 255, 0.8);
|
||||
box-shadow: var(--shadow);
|
||||
backdrop-filter: blur(24px);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.frame::before,
|
||||
.frame::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.frame::before {
|
||||
background:
|
||||
linear-gradient(120deg, rgba(255, 255, 255, 0.55), transparent 26%),
|
||||
radial-gradient(circle at 76% 24%, rgba(37, 99, 235, 0.08), transparent 18%);
|
||||
mix-blend-mode: screen;
|
||||
}
|
||||
|
||||
.frame::after {
|
||||
inset: 18px;
|
||||
border-radius: 30px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.72);
|
||||
}
|
||||
|
||||
.topbar {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 16px;
|
||||
margin-bottom: 34px;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.wordmark {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
padding: 10px 14px;
|
||||
border-radius: 999px;
|
||||
background: rgba(255, 255, 255, 0.62);
|
||||
border: 1px solid rgba(255, 255, 255, 0.82);
|
||||
box-shadow: 0 12px 40px rgba(148, 163, 184, 0.14);
|
||||
color: var(--text);
|
||||
font-size: 14px;
|
||||
letter-spacing: 0.02em;
|
||||
font-weight: 600;
|
||||
backdrop-filter: blur(18px);
|
||||
}
|
||||
|
||||
.wordmark-dot {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
border-radius: 999px;
|
||||
background: linear-gradient(180deg, #6ea8ff, #2563eb);
|
||||
box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
|
||||
}
|
||||
|
||||
.availability {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
padding: 10px 14px;
|
||||
border-radius: 999px;
|
||||
background: rgba(255, 255, 255, 0.56);
|
||||
border: 1px solid rgba(255, 255, 255, 0.76);
|
||||
color: var(--soft);
|
||||
font-size: 13px;
|
||||
backdrop-filter: blur(18px);
|
||||
}
|
||||
|
||||
.availability span {
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
border-radius: 50%;
|
||||
background: linear-gradient(180deg, #f6bf54, #f59e0b);
|
||||
box-shadow: 0 0 0 5px rgba(245, 158, 11, 0.12);
|
||||
animation: pulse 2.8s ease-in-out infinite;
|
||||
}
|
||||
|
||||
.hero {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
|
||||
gap: 42px;
|
||||
align-items: center;
|
||||
min-height: calc(100% - 78px);
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.copy {
|
||||
max-width: 540px;
|
||||
padding: 10px 6px 10px 10px;
|
||||
}
|
||||
|
||||
.badge {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
padding: 12px 18px;
|
||||
border-radius: 999px;
|
||||
background: rgba(255, 255, 255, 0.64);
|
||||
border: 1px solid rgba(255, 255, 255, 0.86);
|
||||
box-shadow: var(--shadow-soft);
|
||||
backdrop-filter: blur(18px);
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.badge-icon {
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
display: grid;
|
||||
place-items: center;
|
||||
border-radius: 50%;
|
||||
background: linear-gradient(180deg, rgba(245, 158, 11, 0.18), rgba(245, 158, 11, 0.08));
|
||||
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
|
||||
}
|
||||
|
||||
.pause-bars {
|
||||
width: 10px;
|
||||
height: 12px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.pause-bars::before,
|
||||
.pause-bars::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 0;
|
||||
width: 3px;
|
||||
height: 12px;
|
||||
border-radius: 999px;
|
||||
background: var(--amber);
|
||||
box-shadow: 0 0 16px rgba(245, 158, 11, 0.18);
|
||||
}
|
||||
|
||||
.pause-bars::before { left: 1px; }
|
||||
.pause-bars::after { right: 1px; }
|
||||
|
||||
.badge-copy {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 2px;
|
||||
}
|
||||
|
||||
.badge-copy strong {
|
||||
font-size: 13px;
|
||||
letter-spacing: 0.06em;
|
||||
text-transform: uppercase;
|
||||
color: var(--soft);
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.badge-copy span {
|
||||
font-size: 14px;
|
||||
color: var(--text);
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
h1 {
|
||||
margin: 0;
|
||||
font-size: clamp(3.5rem, 5vw, 5.5rem);
|
||||
line-height: 0.94;
|
||||
letter-spacing: -0.055em;
|
||||
font-weight: 700;
|
||||
max-width: 10ch;
|
||||
}
|
||||
|
||||
.lede {
|
||||
margin: 24px 0 0;
|
||||
font-size: clamp(1.08rem, 1.9vw, 1.28rem);
|
||||
line-height: 1.55;
|
||||
color: var(--muted);
|
||||
max-width: 47ch;
|
||||
letter-spacing: -0.01em;
|
||||
}
|
||||
|
||||
.subcopy {
|
||||
margin: 14px 0 0;
|
||||
color: var(--soft);
|
||||
font-size: 15px;
|
||||
line-height: 1.7;
|
||||
max-width: 50ch;
|
||||
}
|
||||
|
||||
.actions {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 14px;
|
||||
flex-wrap: wrap;
|
||||
margin-top: 32px;
|
||||
}
|
||||
|
||||
.button,
|
||||
.link-button {
|
||||
appearance: none;
|
||||
border: 0;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
transition:
|
||||
transform 220ms var(--ease),
|
||||
box-shadow 220ms var(--ease),
|
||||
background-color 220ms var(--ease),
|
||||
border-color 220ms var(--ease),
|
||||
color 220ms var(--ease);
|
||||
}
|
||||
|
||||
.button {
|
||||
padding: 16px 22px;
|
||||
border-radius: 999px;
|
||||
background: linear-gradient(180deg, #2f6fff, #2563eb);
|
||||
color: #fff;
|
||||
font-size: 15px;
|
||||
font-weight: 600;
|
||||
letter-spacing: -0.01em;
|
||||
box-shadow:
|
||||
0 14px 40px rgba(37, 99, 235, 0.24),
|
||||
inset 0 1px 0 rgba(255, 255, 255, 0.2);
|
||||
}
|
||||
|
||||
.button:hover,
|
||||
.button:focus-visible {
|
||||
transform: translateY(-1px);
|
||||
box-shadow:
|
||||
0 20px 48px rgba(37, 99, 235, 0.28),
|
||||
inset 0 1px 0 rgba(255, 255, 255, 0.22);
|
||||
}
|
||||
|
||||
.link-button {
|
||||
padding: 16px 18px;
|
||||
border-radius: 999px;
|
||||
background: rgba(255, 255, 255, 0.5);
|
||||
border: 1px solid rgba(255, 255, 255, 0.8);
|
||||
color: var(--text);
|
||||
font-size: 15px;
|
||||
font-weight: 600;
|
||||
box-shadow: 0 10px 30px rgba(148, 163, 184, 0.14);
|
||||
backdrop-filter: blur(18px);
|
||||
}
|
||||
|
||||
.link-button:hover,
|
||||
.link-button:focus-visible {
|
||||
transform: translateY(-1px);
|
||||
background: rgba(255, 255, 255, 0.7);
|
||||
}
|
||||
|
||||
.meta {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 14px;
|
||||
margin-top: 34px;
|
||||
}
|
||||
|
||||
.meta-card {
|
||||
min-width: 185px;
|
||||
padding: 16px 18px;
|
||||
border-radius: var(--radius-md);
|
||||
background: rgba(255, 255, 255, 0.48);
|
||||
border: 1px solid rgba(255, 255, 255, 0.76);
|
||||
box-shadow: var(--shadow-soft);
|
||||
backdrop-filter: blur(18px);
|
||||
}
|
||||
|
||||
.meta-card .eyebrow {
|
||||
display: block;
|
||||
margin-bottom: 8px;
|
||||
color: var(--soft);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.08em;
|
||||
font-size: 11px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.meta-card strong {
|
||||
display: block;
|
||||
font-size: 17px;
|
||||
letter-spacing: -0.03em;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.meta-card p {
|
||||
margin: 0;
|
||||
color: var(--muted);
|
||||
font-size: 14px;
|
||||
line-height: 1.55;
|
||||
}
|
||||
|
||||
.visual {
|
||||
position: relative;
|
||||
min-height: 630px;
|
||||
display: grid;
|
||||
place-items: center;
|
||||
isolation: isolate;
|
||||
perspective: 1200px;
|
||||
}
|
||||
|
||||
.visual::before,
|
||||
.visual::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
border-radius: 50%;
|
||||
pointer-events: none;
|
||||
filter: blur(30px);
|
||||
transition: transform 240ms var(--ease);
|
||||
}
|
||||
|
||||
.visual::before {
|
||||
width: 460px;
|
||||
height: 460px;
|
||||
background: radial-gradient(circle, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0) 72%);
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
.visual::after {
|
||||
width: 320px;
|
||||
height: 320px;
|
||||
background: radial-gradient(circle, rgba(37, 99, 235, 0.14) 0%, rgba(37, 99, 235, 0) 72%);
|
||||
top: 14%;
|
||||
right: 14%;
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
.orbital-ring {
|
||||
position: absolute;
|
||||
width: 480px;
|
||||
height: 480px;
|
||||
border-radius: 50%;
|
||||
border: 1px solid rgba(255, 255, 255, 0.6);
|
||||
box-shadow:
|
||||
0 0 0 18px rgba(255, 255, 255, 0.12),
|
||||
inset 0 0 40px rgba(255, 255, 255, 0.24);
|
||||
opacity: 0.9;
|
||||
z-index: 1;
|
||||
animation: ring 14s linear infinite;
|
||||
}
|
||||
|
||||
.glass-panel {
|
||||
position: absolute;
|
||||
inset: 12% 8%;
|
||||
border-radius: var(--radius-xl);
|
||||
background: linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.08));
|
||||
border: 1px solid rgba(255, 255, 255, 0.38);
|
||||
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
|
||||
transform: translate3d(0, 0, 0) rotateX(10deg);
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.hero-art {
|
||||
position: relative;
|
||||
width: min(100%, 720px);
|
||||
padding: 44px;
|
||||
border-radius: 42px;
|
||||
background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.14));
|
||||
border: 1px solid rgba(255, 255, 255, 0.62);
|
||||
box-shadow:
|
||||
0 32px 100px rgba(148, 163, 184, 0.22),
|
||||
inset 0 1px 0 rgba(255, 255, 255, 0.48);
|
||||
backdrop-filter: blur(30px);
|
||||
z-index: 2;
|
||||
transform-style: preserve-3d;
|
||||
transition: transform 240ms var(--ease);
|
||||
animation: float 7s ease-in-out infinite;
|
||||
}
|
||||
|
||||
.hero-art::before,
|
||||
.hero-art::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
inset: 16px;
|
||||
border-radius: 30px;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.hero-art::before {
|
||||
border: 1px solid rgba(255, 255, 255, 0.5);
|
||||
}
|
||||
|
||||
.hero-art::after {
|
||||
background:
|
||||
linear-gradient(140deg, rgba(255, 255, 255, 0.26), transparent 28%),
|
||||
linear-gradient(320deg, rgba(245, 158, 11, 0.08), transparent 34%);
|
||||
mix-blend-mode: screen;
|
||||
}
|
||||
|
||||
.hero-art img {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
border-radius: 28px;
|
||||
transform: translateZ(40px);
|
||||
filter: saturate(1.02) contrast(1.02);
|
||||
box-shadow: 0 30px 90px rgba(148, 163, 184, 0.22);
|
||||
user-select: none;
|
||||
-webkit-user-drag: none;
|
||||
}
|
||||
|
||||
.scan-caption {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
bottom: 28px;
|
||||
transform: translateX(-50%);
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
padding: 12px 16px;
|
||||
border-radius: 999px;
|
||||
background: rgba(255, 255, 255, 0.7);
|
||||
border: 1px solid rgba(255, 255, 255, 0.88);
|
||||
box-shadow: 0 12px 40px rgba(148, 163, 184, 0.18);
|
||||
font-size: 13px;
|
||||
color: var(--muted);
|
||||
backdrop-filter: blur(18px);
|
||||
z-index: 3;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.scan-caption strong {
|
||||
color: var(--text);
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.scan-caption .beam {
|
||||
width: 34px;
|
||||
height: 2px;
|
||||
border-radius: 999px;
|
||||
background: linear-gradient(90deg, rgba(245, 158, 11, 0), rgba(245, 158, 11, 1), rgba(245, 158, 11, 0));
|
||||
box-shadow: 0 0 16px rgba(245, 158, 11, 0.45);
|
||||
}
|
||||
|
||||
.footer-note {
|
||||
margin-top: 18px;
|
||||
color: var(--soft);
|
||||
font-size: 12px;
|
||||
letter-spacing: 0.02em;
|
||||
}
|
||||
|
||||
@keyframes float {
|
||||
0%, 100% { transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg); }
|
||||
50% { transform: translate3d(0, -10px, 0) rotateX(1.5deg) rotateY(-1.5deg); }
|
||||
}
|
||||
|
||||
@keyframes drift {
|
||||
0% { transform: translate3d(0, 0, 0) scale(1); }
|
||||
100% { transform: translate3d(-18px, 14px, 0) scale(1.08); }
|
||||
}
|
||||
|
||||
@keyframes pulse {
|
||||
0%, 100% { transform: scale(1); opacity: 0.85; }
|
||||
50% { transform: scale(1.18); opacity: 1; }
|
||||
}
|
||||
|
||||
@keyframes ring {
|
||||
from { transform: rotate(0deg) scale(1); }
|
||||
50% { transform: rotate(180deg) scale(1.02); }
|
||||
to { transform: rotate(360deg) scale(1); }
|
||||
}
|
||||
|
||||
@media (max-width: 1080px) {
|
||||
.shell {
|
||||
padding: 18px;
|
||||
}
|
||||
|
||||
.frame {
|
||||
min-height: auto;
|
||||
padding: 22px;
|
||||
}
|
||||
|
||||
.hero {
|
||||
grid-template-columns: 1fr;
|
||||
gap: 24px;
|
||||
}
|
||||
|
||||
.copy {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.visual {
|
||||
min-height: 520px;
|
||||
order: -1;
|
||||
}
|
||||
|
||||
.hero-art {
|
||||
max-width: 640px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 720px) {
|
||||
.shell {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.frame {
|
||||
padding: 16px;
|
||||
border-radius: 28px;
|
||||
}
|
||||
|
||||
.topbar {
|
||||
margin-bottom: 18px;
|
||||
}
|
||||
|
||||
.availability {
|
||||
display: none;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: clamp(2.8rem, 12vw, 4rem);
|
||||
max-width: 12ch;
|
||||
}
|
||||
|
||||
.lede {
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.actions,
|
||||
.meta {
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.button,
|
||||
.link-button {
|
||||
width: 100%;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.visual {
|
||||
min-height: 380px;
|
||||
}
|
||||
|
||||
.hero-art {
|
||||
padding: 18px;
|
||||
border-radius: 24px;
|
||||
}
|
||||
|
||||
.hero-art::before,
|
||||
.hero-art::after {
|
||||
inset: 10px;
|
||||
border-radius: 18px;
|
||||
}
|
||||
|
||||
.hero-art img {
|
||||
border-radius: 16px;
|
||||
}
|
||||
|
||||
.orbital-ring {
|
||||
width: 300px;
|
||||
height: 300px;
|
||||
}
|
||||
|
||||
.scan-caption {
|
||||
bottom: 14px;
|
||||
max-width: calc(100% - 30px);
|
||||
white-space: normal;
|
||||
text-align: center;
|
||||
line-height: 1.45;
|
||||
}
|
||||
}
|
||||
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
*,
|
||||
*::before,
|
||||
*::after {
|
||||
animation: none !important;
|
||||
transition: none !important;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="grain" aria-hidden="true"></div>
|
||||
<main class="shell">
|
||||
<section class="frame">
|
||||
<header class="topbar">
|
||||
<div class="wordmark">
|
||||
<span class="wordmark-dot" aria-hidden="true"></span>
|
||||
QR Master
|
||||
</div>
|
||||
<div class="availability">
|
||||
<span aria-hidden="true"></span>
|
||||
Scanning temporarily unavailable
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div class="hero">
|
||||
<div class="copy">
|
||||
<div class="badge">
|
||||
<div class="badge-icon" aria-hidden="true">
|
||||
<div class="pause-bars"></div>
|
||||
</div>
|
||||
<div class="badge-copy">
|
||||
<strong>Status</strong>
|
||||
<span>Paused by owner</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h1>QR Code is paused</h1>
|
||||
|
||||
<p class="lede">
|
||||
This QR code has been temporarily disabled by its owner, so scanning is currently unavailable.
|
||||
</p>
|
||||
|
||||
<p class="subcopy">
|
||||
Please try again later or contact the owner for the active link. Paused codes should feel intentional and trustworthy, not broken.
|
||||
</p>
|
||||
|
||||
<div class="actions">
|
||||
<a class="button" href="#">Go to QR Master</a>
|
||||
<a class="link-button" href="#">Need help?</a>
|
||||
</div>
|
||||
|
||||
<div class="meta">
|
||||
<article class="meta-card">
|
||||
<span class="eyebrow">Redirect</span>
|
||||
<strong>Temporarily disabled</strong>
|
||||
<p>No destination opens while this code remains paused.</p>
|
||||
</article>
|
||||
<article class="meta-card">
|
||||
<span class="eyebrow">Tracking</span>
|
||||
<strong>Scan logging stopped</strong>
|
||||
<p>Paused scans should not continue into analytics.</p>
|
||||
</article>
|
||||
</div>
|
||||
|
||||
<p class="footer-note">Preview concept for a standalone paused-state page.</p>
|
||||
</div>
|
||||
|
||||
<div class="visual" id="visualStage">
|
||||
<div class="orbital-ring" aria-hidden="true"></div>
|
||||
<div class="glass-panel" aria-hidden="true"></div>
|
||||
<figure class="hero-art" id="heroArt">
|
||||
<img src="./paused-qr-hero-cinematic.png" alt="Glass-like QR tile floating in a cinematic studio environment">
|
||||
</figure>
|
||||
<div class="scan-caption">
|
||||
<strong>Paused</strong>
|
||||
<span class="beam" aria-hidden="true"></span>
|
||||
The scan was intentionally interrupted
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<script>
|
||||
const heroArt = document.getElementById('heroArt');
|
||||
const visualStage = document.getElementById('visualStage');
|
||||
|
||||
if (heroArt && visualStage && window.matchMedia('(prefers-reduced-motion: no-preference)').matches) {
|
||||
visualStage.addEventListener('pointermove', (event) => {
|
||||
const bounds = visualStage.getBoundingClientRect();
|
||||
const x = (event.clientX - bounds.left) / bounds.width - 0.5;
|
||||
const y = (event.clientY - bounds.top) / bounds.height - 0.5;
|
||||
|
||||
const rotateX = y * -10;
|
||||
const rotateY = x * 12;
|
||||
const translateX = x * 12;
|
||||
const translateY = y * 8;
|
||||
|
||||
heroArt.style.transform =
|
||||
`translate3d(${translateX}px, ${translateY}px, 0) rotateX(${rotateX}deg) rotateY(${rotateY}deg)`;
|
||||
});
|
||||
|
||||
visualStage.addEventListener('pointerleave', () => {
|
||||
heroArt.style.transform = '';
|
||||
});
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
BIN
output/paused-qr-preview/paused-qr-hero-cinematic.png
Normal file
BIN
output/paused-qr-preview/paused-qr-hero-cinematic.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.6 MiB |
Reference in New Issue
Block a user