-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
179 lines (160 loc) · 4.58 KB
/
index.html
File metadata and controls
179 lines (160 loc) · 4.58 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Matrix MCP static homepage">
<title>Matrix MCP v2.0</title>
<style>
:root {
color-scheme: dark;
--bg: #0b1220;
--panel: #111a2e;
--border: rgba(148, 163, 184, 0.18);
--text: #e5e7eb;
--muted: #94a3b8;
--accent: #3b82f6;
--accent-2: #60a5fa;
}
* { box-sizing: border-box; }
body {
margin: 0;
min-height: 100vh;
display: grid;
place-items: center;
background:
radial-gradient(circle at top, rgba(59, 130, 246, 0.18), transparent 35%),
radial-gradient(circle at bottom right, rgba(96, 165, 250, 0.12), transparent 30%),
var(--bg);
color: var(--text);
font-family: Arial, Helvetica, sans-serif;
padding: 24px;
}
.card {
width: min(860px, 100%);
padding: 40px;
background: linear-gradient(180deg, rgba(17, 26, 46, 0.98), rgba(12, 18, 32, 0.98));
border: 1px solid var(--border);
border-radius: 24px;
box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}
.eyebrow {
margin: 0 0 10px;
color: var(--accent-2);
font-size: 13px;
letter-spacing: 0.18em;
text-transform: uppercase;
font-weight: 700;
}
h1 {
margin: 0;
font-size: clamp(32px, 5vw, 56px);
line-height: 1.05;
}
.lead {
margin: 18px 0 0;
max-width: 64ch;
color: var(--muted);
font-size: 16px;
line-height: 1.7;
}
.grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 16px;
margin-top: 28px;
}
.tile {
padding: 18px;
border: 1px solid var(--border);
border-radius: 16px;
background: rgba(255, 255, 255, 0.03);
}
.tile h2 {
margin: 0 0 8px;
font-size: 16px;
}
.tile p {
margin: 0;
color: var(--muted);
font-size: 14px;
line-height: 1.6;
}
.actions {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin-top: 28px;
}
.button {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 12px 18px;
border-radius: 12px;
border: 1px solid var(--border);
text-decoration: none;
color: var(--text);
background: rgba(255, 255, 255, 0.03);
font-weight: 700;
transition: transform 0.15s ease, border-color 0.15s ease;
}
.button:hover {
transform: translateY(-1px);
border-color: rgba(96, 165, 250, 0.5);
}
.button.primary {
background: linear-gradient(135deg, var(--accent), #2563eb);
border-color: transparent;
}
.footer {
margin-top: 28px;
padding-top: 18px;
border-top: 1px solid var(--border);
color: var(--muted);
font-size: 13px;
line-height: 1.6;
}
@media (max-width: 700px) {
.card { padding: 24px; }
.grid { grid-template-columns: 1fr; }
}
</style>
</head>
<body>
<main class="card">
<p class="eyebrow">Matrix MCP v2.0</p>
<h1>Static Homepage</h1>
<p class="lead">
This page is intentionally separate from the desktop app and the local web server.
It is a simple public landing page for browsing, sharing, and GitHub Pages hosting.
</p>
<section class="grid" aria-label="Highlights">
<article class="tile">
<h2>Repository</h2>
<p>Source code, docs, and release history live in the GitHub repository.</p>
</article>
<article class="tile">
<h2>Releases</h2>
<p>Build artifacts and installers are published separately from the homepage.</p>
</article>
<article class="tile">
<h2>Runtime UI</h2>
<p>The application UI is kept in the runtime presentation files, not on this page.</p>
</article>
<article class="tile">
<h2>GitHub Pages</h2>
<p>This file is safe to host as a standalone static web page.</p>
</article>
</section>
<div class="actions">
<a class="button primary" href="https://github.com/lim-asdk/Matrix_MCP_V2" target="_blank" rel="noreferrer">GitHub Repository</a>
<a class="button" href="https://github.com/lim-asdk/Matrix_MCP_V2/releases" target="_blank" rel="noreferrer">Releases</a>
</div>
<div class="footer">
Matrix MCP is a local-first workspace project by Lim Arsenal.
This homepage does not load runtime scripts, local APIs, or desktop app bridges.
</div>
</main>
</body>
</html>