-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (73 loc) · 1.79 KB
/
index.html
File metadata and controls
91 lines (73 loc) · 1.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Name</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
background: #0f172a;
color: #e2e8f0;
margin: 0;
padding: 40px 20px;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}
h1 {
font-size: 36px;
margin-bottom: 5px;
}
h2 {
margin-top: 40px;
font-size: 20px;
color: #94a3b8;
}
p {
color: #cbd5f5;
}
.project {
margin-top: 20px;
padding: 20px;
background: #020617;
border-radius: 8px;
}
.highlight {
color: #38bdf8;
font-weight: 600;
}
a {
color: #38bdf8;
text-decoration: none;
}
footer {
margin-top: 60px;
color: #64748b;
font-size: 14px;
}
</style>
</head>
<body>
<h1>TSltd</h1>
<p>
Systems and software.
</p>
<h2>Featured</h2>
<div class="project">
<strong>Phase Router</strong>
<p>Deterministic, capacity-aware routing for modern systems.</p>
<p class="highlight">
92.5% vs 76.4% token survival · ~2× faster
</p>
<a href="https://github.com/TSltd/phase_router_rs>View project →</a>
</div>
<h2>More</h2>
<p>More projects coming soon.</p>
<footer>
<p>
<a href="https://github.com/TSltd">GitHub</a>
</p>
</footer>
</body>
</html>