Initial commit
This commit is contained in:
@@ -0,0 +1,75 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Acme — Blog</title>
|
||||
<style>
|
||||
*{box-sizing:border-box} body{font-family:-apple-system,Segoe UI,Roboto,sans-serif;margin:0;color:#1a1a1a;background:#fff}
|
||||
header{border-bottom:1px solid #e5e7eb}
|
||||
nav{max-width:960px;margin:0 auto;padding:16px 24px;display:flex;gap:20px;align-items:center}
|
||||
nav .brand{font-weight:700;margin-right:auto}
|
||||
nav a{color:#374151;text-decoration:none;font-size:15px;font-weight:500}
|
||||
main{max-width:760px;margin:0 auto;padding:48px 24px}
|
||||
h1{font-size:32px;margin:0 0 28px}
|
||||
.posts{list-style:none;margin:0;padding:0}
|
||||
.posts li{padding:20px 0;border-top:1px solid #eee}
|
||||
.posts a{color:inherit;text-decoration:none;display:block}
|
||||
.posts .date{font-size:13px;color:#9ca3af}
|
||||
.posts h2{font-size:20px;margin:6px 0 4px}
|
||||
.posts p{font-size:14px;color:#6b7280;line-height:1.6;margin:0}
|
||||
footer{max-width:960px;margin:0 auto;padding:32px 24px;color:#9ca3af;font-size:13px;border-top:1px solid #e5e5e5}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<nav aria-label="Primary">
|
||||
<span class="brand">Acme</span>
|
||||
<a href="/">Home</a>
|
||||
<a href="blog.html">Blog</a>
|
||||
<a href="faq.html">FAQ</a>
|
||||
</nav>
|
||||
</header>
|
||||
<main>
|
||||
<h1>From the blog</h1>
|
||||
<ul class="posts">
|
||||
<li>
|
||||
<a href="blog.html">
|
||||
<span class="date">Jun 2, 2026</span>
|
||||
<h2>Announcing the alpha release</h2>
|
||||
<p>A first look at everything that shipped in our earliest public build.</p>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="blog.html">
|
||||
<span class="date">May 21, 2026</span>
|
||||
<h2>A practical guide to CSS grid</h2>
|
||||
<p>Lay out responsive collections without fighting the box model.</p>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="blog.html">
|
||||
<span class="date">May 9, 2026</span>
|
||||
<h2>Shipping faster pages in 2026</h2>
|
||||
<p>The performance budget we hold every release to, and why it matters.</p>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="blog.html">
|
||||
<span class="date">Apr 27, 2026</span>
|
||||
<h2>Rethinking our color system</h2>
|
||||
<p>How we moved to semantic tokens and what we learned along the way.</p>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="blog.html">
|
||||
<span class="date">Apr 14, 2026</span>
|
||||
<h2>Highlights from the meetup</h2>
|
||||
<p>Talks, demos, and conversations from our first in-person gathering.</p>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</main>
|
||||
<footer>© 2026 Acme, Inc. All rights reserved.</footer>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,55 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Acme — FAQ</title>
|
||||
<style>
|
||||
*{box-sizing:border-box} body{font-family:-apple-system,Segoe UI,Roboto,sans-serif;margin:0;color:#1a1a1a;background:#fff}
|
||||
header{border-bottom:1px solid #e5e7eb}
|
||||
nav{max-width:960px;margin:0 auto;padding:16px 24px;display:flex;gap:20px;align-items:center}
|
||||
nav .brand{font-weight:700;margin-right:auto}
|
||||
nav a{color:#374151;text-decoration:none;font-size:15px;font-weight:500}
|
||||
main{max-width:760px;margin:0 auto;padding:48px 24px}
|
||||
h1{font-size:32px;margin:0 0 24px}
|
||||
.acc{border:1px solid #e5e7eb;border-radius:8px;overflow:hidden}
|
||||
.acc-item+.acc-item{border-top:1px solid #e5e7eb}
|
||||
.acc-trigger{appearance:none;width:100%;text-align:left;border:0;background:#fafafa;padding:16px 18px;font-size:16px;cursor:pointer;color:#1a1a1a}
|
||||
.acc-trigger[aria-expanded=true]{background:#eef2ff;color:#4f46e5}
|
||||
.acc-panel{padding:4px 18px 20px;font-size:15px;line-height:1.6;color:#4b5563}
|
||||
.acc-panel[hidden]{display:none}
|
||||
footer{max-width:960px;margin:0 auto;padding:32px 24px;color:#9ca3af;font-size:13px;border-top:1px solid #e5e5e5}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<nav aria-label="Primary">
|
||||
<span class="brand">Acme</span>
|
||||
<a href="/">Home</a>
|
||||
<a href="blog.html">Blog</a>
|
||||
<a href="faq.html">FAQ</a>
|
||||
</nav>
|
||||
</header>
|
||||
<main>
|
||||
<h1>Frequently asked questions</h1>
|
||||
<div class="acc">
|
||||
<div class="acc-item">
|
||||
<button class="acc-trigger" id="a1" aria-controls="s1" aria-expanded="true">How do I get started?</button>
|
||||
<div class="acc-panel" id="s1" role="region" aria-labelledby="a1"><p>Sign up for the Starter plan and follow the onboarding guide.</p></div>
|
||||
</div>
|
||||
<div class="acc-item">
|
||||
<button class="acc-trigger" id="a2" aria-controls="s2" aria-expanded="false">Can I upgrade later?</button>
|
||||
<div class="acc-panel" id="s2" role="region" aria-labelledby="a2" hidden><p>Yes — upgrade to Pro anytime from your account settings.</p></div>
|
||||
</div>
|
||||
<div class="acc-item">
|
||||
<button class="acc-trigger" id="a3" aria-controls="s3" aria-expanded="false">Do you offer refunds?</button>
|
||||
<div class="acc-panel" id="s3" role="region" aria-labelledby="a3" hidden><p>We offer a 30-day money-back guarantee on all paid plans.</p></div>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
<footer>© 2026 Acme, Inc. All rights reserved.</footer>
|
||||
<script>
|
||||
document.querySelectorAll('.acc-trigger').forEach((btn)=>{btn.addEventListener('click',()=>{const open=btn.getAttribute('aria-expanded')==='true';btn.setAttribute('aria-expanded',open?'false':'true');const p=document.getElementById(btn.getAttribute('aria-controls'));if(p)p.hidden=open;});});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,71 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Acme — Home</title>
|
||||
<style>
|
||||
*{box-sizing:border-box} body{font-family:-apple-system,Segoe UI,Roboto,sans-serif;margin:0;color:#1a1a1a;background:#fff}
|
||||
header{border-bottom:1px solid #e5e7eb}
|
||||
nav{max-width:960px;margin:0 auto;padding:16px 24px;display:flex;gap:20px;align-items:center}
|
||||
nav .brand{font-weight:700;margin-right:auto}
|
||||
nav a{color:#374151;text-decoration:none;font-size:15px;font-weight:500}
|
||||
main{max-width:960px;margin:0 auto;padding:48px 24px}
|
||||
h1{font-size:34px;margin:0 0 8px}
|
||||
.intro{color:#6b7280;font-size:17px;margin:0 0 40px}
|
||||
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
|
||||
.feature{border:1px solid #e5e7eb;border-radius:12px;padding:22px}
|
||||
.feature .ico{width:36px;height:36px;border-radius:8px;background:#eef2ff}
|
||||
.feature h3{font-size:18px;margin:14px 0 6px}
|
||||
.feature p{font-size:14px;color:#6b7280;line-height:1.6;margin:0}
|
||||
footer{max-width:960px;margin:0 auto;padding:32px 24px;color:#9ca3af;font-size:13px;border-top:1px solid #e5e5e5}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<nav aria-label="Primary">
|
||||
<span class="brand">Acme</span>
|
||||
<a href="/">Home</a>
|
||||
<a href="blog.html">Blog</a>
|
||||
<a href="faq.html">FAQ</a>
|
||||
</nav>
|
||||
</header>
|
||||
<main>
|
||||
<h1>Build faster with Acme</h1>
|
||||
<p class="intro">Everything your team needs to ship, in one place.</p>
|
||||
<div class="grid">
|
||||
<div class="feature">
|
||||
<div class="ico"></div>
|
||||
<h3>Fast by default</h3>
|
||||
<p>Sensible defaults and zero-config builds get you to production quickly.</p>
|
||||
</div>
|
||||
<div class="feature">
|
||||
<div class="ico"></div>
|
||||
<h3>Collaborative</h3>
|
||||
<p>Share previews and gather feedback without leaving your editor.</p>
|
||||
</div>
|
||||
<div class="feature">
|
||||
<div class="ico"></div>
|
||||
<h3>Secure</h3>
|
||||
<p>SSO, audit logs, and granular permissions for every workspace.</p>
|
||||
</div>
|
||||
<div class="feature">
|
||||
<div class="ico"></div>
|
||||
<h3>Observable</h3>
|
||||
<p>Built-in metrics and tracing so you always know what shipped.</p>
|
||||
</div>
|
||||
<div class="feature">
|
||||
<div class="ico"></div>
|
||||
<h3>Extensible</h3>
|
||||
<p>A plugin API and webhooks connect Acme to the rest of your stack.</p>
|
||||
</div>
|
||||
<div class="feature">
|
||||
<div class="ico"></div>
|
||||
<h3>Supported</h3>
|
||||
<p>Priority support and a responsive community keep you unblocked.</p>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
<footer>© 2026 Acme, Inc. All rights reserved.</footer>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user