Replace the press-to-play demo and the "see how it works" button with an example that keeps playing on the right: hold Right Alt, the capsule appears with live wave bars, elapsed time and the partial transcript, releasing shows the processing bar, and the cleaned sentence is pasted at the cursor of a notes window. It cycles through two samples per language. - Same numbers as apps/desktop recording-tip: 9 bars with cos weights, 100 ms updates, 0.5 smoothing, +/-35% jitter, 2-28 px, per-bar colours, 120 px progress bar min(95, (1 - 1/(1 + 1.5t)) * 100)%. - WCAG 2.2.2: a pause button; stops when off screen or the tab is hidden. Reduced motion shows one still frame. The animation is aria-hidden with a text description for screen readers. Chinese and Japanese transcripts appear three characters at a time. - Add 404.html so unknown paths stop falling back to the landing page, delete the duplicate accept-invite.html (/accept-invite/ is canonical) and link it straight to /#download, and move the legal pages off the retired orange accent (primary button contrast 5.2:1).
25 lines
886 B
HTML
25 lines
886 B
HTML
<!doctype html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<meta name="robots" content="noindex">
|
|
<title>페이지를 찾을 수 없습니다 — D3RO Voice</title>
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
|
<link rel="stylesheet" href="/legal.css">
|
|
</head>
|
|
<body>
|
|
<div class="shell">
|
|
<a class="brand" href="/"><span class="brand-mark"></span>D3RO VOICE</a>
|
|
<main>
|
|
<h1>페이지를 찾을 수 없습니다</h1>
|
|
<p class="lead">주소가 바뀌었거나 없는 페이지입니다.</p>
|
|
<p lang="en" class="meta">This page does not exist or has moved.</p>
|
|
<div class="actions">
|
|
<a class="button" href="/">첫 화면으로</a>
|
|
<a class="button secondary" href="/#download">다운로드</a>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
</body>
|
|
</html>
|