@agenttrace-io/dashboard 0.1.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,70 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <title>404 • AgentTrace</title>
7
+ <link rel="stylesheet" href="style.css" />
8
+ <link rel="icon" href="favicon.svg" type="image/svg+xml" />
9
+ <style>
10
+ .error-wrap {
11
+ min-height: 70vh;
12
+ display: flex;
13
+ align-items: center;
14
+ justify-content: center;
15
+ text-align: center;
16
+ }
17
+ .error-code {
18
+ font-size: 92px;
19
+ font-weight: 700;
20
+ letter-spacing: -4px;
21
+ line-height: 1;
22
+ color: #fff;
23
+ }
24
+ .error-msg {
25
+ font-size: 18px;
26
+ color: var(--text-muted);
27
+ margin: 12px 0 24px;
28
+ }
29
+ </style>
30
+ </head>
31
+ <body>
32
+ <header class="topbar">
33
+ <div class="topbar-inner">
34
+ <div class="brand">
35
+ <svg
36
+ class="brand-logo"
37
+ width="22"
38
+ height="22"
39
+ viewBox="0 0 24 24"
40
+ fill="none"
41
+ aria-hidden="true"
42
+ >
43
+ <circle cx="12" cy="12" r="9" stroke="#3b82f6" stroke-width="2" />
44
+ <path
45
+ d="M8 12l3 3 5-5"
46
+ stroke="#3b82f6"
47
+ stroke-width="2"
48
+ stroke-linecap="round"
49
+ stroke-linejoin="round"
50
+ />
51
+ </svg>
52
+ <h1 style="margin: 0; font-size: 18px">AgentTrace</h1>
53
+ </div>
54
+ <a href="/" class="btn btn-secondary">← Back to dashboard</a>
55
+ </div>
56
+ </header>
57
+ <div class="error-wrap container">
58
+ <div>
59
+ <div class="error-code">404</div>
60
+ <div class="error-msg">
61
+ Page not found. The trace you’re looking for may have been pruned by retention policy.
62
+ </div>
63
+ <a href="/" class="btn btn-primary">Go to Dashboard</a>
64
+ <div style="margin-top: 24px; font-size: 12px; color: #666">
65
+ Or run <span class="mono">npx agenttrace-io dashboard</span> again.
66
+ </div>
67
+ </div>
68
+ </div>
69
+ </body>
70
+ </html>