-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
50 lines (47 loc) · 3.88 KB
/
Copy path404.php
File metadata and controls
50 lines (47 loc) · 3.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
require __DIR__ . '/_bootstrap.php';
http_response_code(404);
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noindex">
<title>Page not found — Cortex</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Inter+Tight:wght@500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/assets/theme.css">
</head>
<body class="lovable-theme">
<div style="min-height:100vh;display:flex;flex-direction:column">
<nav style="position:sticky;top:0;z-index:50;display:flex;align-items:center;justify-content:space-between;padding:14px 40px;background:rgba(250,249,247,0.85);backdrop-filter:blur(12px);border-bottom:1px solid rgba(28,26,23,0.06)">
<a class="brand-link" href="/" style="display:flex;align-items:center;gap:10px;text-decoration:none">
<span style="width:26px;height:26px;border-radius:8px;background:linear-gradient(135deg,oklch(0.62 0.17 285),oklch(0.72 0.15 40))!important;display:inline-flex;align-items:center;justify-content:center;color:#fff!important;font-weight:700;font-size:13px">C</span>
<span style="font-weight:600;font-size:18px;letter-spacing:-0.025em;color:#1f1f1e">Cortex</span>
</a>
<?php cortex_navigation(); ?>
</nav>
<main style="position:relative;isolation:isolate;flex:1;display:grid;place-items:center;overflow:hidden;padding:72px 24px">
<div aria-hidden="true" style="position:absolute;z-index:-2;inset:0;background:linear-gradient(180deg,#fff 0%,#fbfaf8 52%,#f8edf4 100%)"></div>
<div aria-hidden="true" style="position:absolute;z-index:-1;width:min(820px,92vw);height:min(520px,65vw);left:50%;bottom:-34%;transform:translateX(-50%);background:radial-gradient(circle at 50% 35%,rgba(249,40,143,0.24),transparent 54%),radial-gradient(circle at 22% 68%,rgba(85,119,244,0.3),transparent 46%),radial-gradient(circle at 78% 68%,rgba(255,99,53,0.28),transparent 46%);filter:blur(18px)"></div>
<section aria-labelledby="not-found-title" style="width:min(720px,100%);padding:52px 40px;text-align:center;border:1px solid rgba(31,31,30,0.1);border-radius:24px;background:rgba(255,255,255,0.72);box-shadow:0 24px 80px rgba(31,31,30,0.08);backdrop-filter:blur(18px)">
<div style="display:inline-flex;align-items:center;gap:9px;margin-bottom:24px;padding:7px 13px;border:1px solid rgba(31,31,30,0.1);border-radius:99px;background:#fff;color:rgba(31,31,30,0.64);font-size:13px;font-weight:600">
<span style="width:7px;height:7px;border-radius:50%;background:#f9288f;box-shadow:0 0 12px rgba(249,40,143,0.7)"></span>
Error 404
</div>
<h1 id="not-found-title" style="margin:0;font-size:clamp(46px,8vw,76px);line-height:0.98;letter-spacing:-0.055em;text-wrap:balance">This page isn’t in the workspace.</h1>
<p style="max-width:540px;margin:24px auto 0;color:rgba(31,31,30,0.64);font-size:17px;line-height:1.65">The link may be outdated, or the page may have moved. Head back to Cortex and keep exploring from there.</p>
<div style="display:flex;justify-content:center;flex-wrap:wrap;gap:12px;margin-top:32px">
<a href="/" style="padding:13px 22px;border:1px solid #1f1f1e;border-radius:10px;background:#1f1f1e;color:#fff;font-size:15px;font-weight:600;text-decoration:none">Back to Cortex</a>
<a href="/features/" style="padding:13px 22px;border:1px solid rgba(31,31,30,0.16);border-radius:10px;background:#fff;color:#1f1f1e;font-size:15px;font-weight:600;text-decoration:none">Explore features</a>
</div>
</section>
</main>
<footer style="padding:22px 24px;border-top:1px solid rgba(31,31,30,0.08);background:#fff;text-align:center;color:rgba(31,31,30,0.42);font-size:12.5px">
© 2026 Cortex. Local runtime, your machine, your rules.
</footer>
</div>
<?= cms_assets() ?>
</body>
</html>