- index.php: Landing page with feature showcase, editions, roadmap - download.php: WebTorrent P2P download (no torrent client needed) - apps.php: Ecosystem app downloads (Browser, IDE, Veil, Pulse) - releases.php: Full changelog RC1 through RC8 - docs.php: Technical documentation and build specs - security.php: Kernel hardening transparency report - developers.php: Developer foundation and contribution guide - compare.php: Head-to-head vs Ubuntu/Mint/Fedora/Arch - about.php: Company provenance, founder, verification commands - 404.html: Branded error page - JSON-LD structured data on 4 pages - Twitter Card + OpenGraph meta tags on all pages - Security headers (HSTS, X-Frame-Options, CSP)
60 lines
3.2 KiB
HTML
60 lines
3.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Page Not Found — Alfred Linux</title>
|
|
<link rel="icon" href="/favicon.ico">
|
|
<link rel="canonical" href="https://alfredlinux.com/">
|
|
<style>
|
|
*{margin:0;padding:0;box-sizing:border-box}
|
|
:root{--bg:#0a0a0f;--surface:#12121a;--accent:#6366f1;--text:#e2e8f0;--muted:#94a3b8}
|
|
body{font-family:'Inter',system-ui,-apple-system,sans-serif;background:var(--bg);color:var(--text);min-height:100vh;display:flex;flex-direction:column}
|
|
nav{padding:1rem 2rem;display:flex;align-items:center;gap:2rem;border-bottom:1px solid rgba(255,255,255,0.06)}
|
|
.nav-brand{color:var(--text);text-decoration:none;font-weight:700;font-size:1.1rem;display:flex;align-items:center;gap:.5rem}
|
|
.logo-mark{width:28px;height:28px;background:var(--accent);border-radius:6px;display:flex;align-items:center;justify-content:center;font-weight:800;font-size:.85rem;color:#fff}
|
|
.nav-links{display:flex;gap:1.5rem;margin-left:auto}
|
|
.nav-links a{color:var(--muted);text-decoration:none;font-size:.9rem;transition:color .2s}
|
|
.nav-links a:hover{color:#fff}
|
|
.nav-cta{background:var(--accent)!important;color:#fff!important;padding:.45rem 1.1rem;border-radius:8px;font-weight:600}
|
|
.hero{flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:2rem}
|
|
.error-code{font-size:8rem;font-weight:800;background:linear-gradient(135deg,var(--accent),#a855f7);-webkit-background-clip:text;-webkit-text-fill-color:transparent;line-height:1}
|
|
h1{font-size:1.8rem;margin:1rem 0 .5rem}
|
|
p{color:var(--muted);font-size:1.1rem;max-width:480px;margin-bottom:2rem}
|
|
.links{display:flex;gap:1rem;flex-wrap:wrap;justify-content:center}
|
|
.links a{color:var(--accent);text-decoration:none;padding:.6rem 1.2rem;border:1px solid rgba(99,102,241,0.3);border-radius:8px;transition:all .2s}
|
|
.links a:hover{background:rgba(99,102,241,0.1);border-color:var(--accent)}
|
|
footer{text-align:center;padding:1.5rem;color:var(--muted);font-size:.85rem;border-top:1px solid rgba(255,255,255,0.06)}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<nav>
|
|
<a href="/" class="nav-brand"><div class="logo-mark">A</div> Alfred Linux</a>
|
|
<div class="nav-links">
|
|
<a href="/">Home</a>
|
|
<a href="/apps">Apps</a>
|
|
<a href="/releases">Releases</a>
|
|
<a href="/compare">Compare</a>
|
|
<a href="/docs">Docs</a>
|
|
<a href="/security">Security</a>
|
|
<a href="/developers">Developers</a>
|
|
<a href="/about">About</a>
|
|
<a href="/download" class="nav-cta">Get Alfred</a>
|
|
</div>
|
|
</nav>
|
|
<div class="hero">
|
|
<div class="error-code">404</div>
|
|
<h1>Page Not Found</h1>
|
|
<p>The page you're looking for doesn't exist or has been moved. Here are some places you might want to go:</p>
|
|
<div class="links">
|
|
<a href="/">🏠 Home</a>
|
|
<a href="/download">⬇️ Download</a>
|
|
<a href="/docs">📖 Docs</a>
|
|
<a href="/apps">📦 Apps</a>
|
|
<a href="/compare">⚖️ Compare</a>
|
|
</div>
|
|
</div>
|
|
<footer>Alfred Linux — The AI-Native Operating System · Built by <a href="https://gositeme.com" style="color:var(--accent);text-decoration:none;">GoSiteMe Inc.</a></footer>
|
|
</body>
|
|
</html>
|