-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
139 lines (124 loc) · 3.44 KB
/
Copy pathindex.html
File metadata and controls
139 lines (124 loc) · 3.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Intentius</title>
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--bg: #0f1117;
--surface: #1a1d27;
--border: #2a2d3a;
--text: #e2e4ea;
--text-muted: #8b8fa3;
--accent: #6c8cff;
--accent-hover: #8aa4ff;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
background: var(--bg);
color: var(--text);
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 2rem;
}
main {
max-width: 540px;
text-align: center;
}
h1 {
font-size: 2.5rem;
font-weight: 700;
letter-spacing: -0.02em;
margin-bottom: 0.75rem;
}
.projects {
display: flex;
flex-direction: column;
gap: 1rem;
}
.project {
display: flex;
align-items: center;
gap: 1rem;
padding: 1.25rem 1.5rem;
background: var(--surface);
border: 1px solid var(--border);
border-radius: 10px;
text-decoration: none;
color: var(--text);
transition: border-color 0.15s, background 0.15s;
}
.project:hover {
border-color: var(--accent);
background: #1e2130;
}
.project-info { text-align: left; }
.project-name {
font-size: 1.1rem;
font-weight: 600;
margin-bottom: 0.2rem;
}
.project-desc {
color: var(--text-muted);
font-size: 0.875rem;
}
.arrow {
margin-left: auto;
color: var(--text-muted);
font-size: 1.25rem;
transition: color 0.15s, transform 0.15s;
}
.project:hover .arrow {
color: var(--accent);
transform: translateX(3px);
}
footer {
position: fixed;
bottom: 1.5rem;
color: var(--text-muted);
font-size: 0.8rem;
}
footer a {
color: var(--text-muted);
text-decoration: none;
}
footer a:hover { color: var(--accent); }
</style>
</head>
<body>
<main>
<h1>Intentius</h1>
<div class="projects">
<a class="project" href="/chant/">
<div class="project-info">
<div class="project-name">chant</div>
<div class="project-desc">A type system for operations. TypeScript in, deployment-ready artifacts out.</div>
</div>
<span class="arrow">→</span>
</a>
<a class="project" href="https://blacklight.intentius.io">
<div class="project-info">
<div class="project-name">blacklight</div>
<div class="project-desc">Hosted security audit for any repo. Paste a URL, see the misconfigurations hiding in your CI & infra.</div>
</div>
<span class="arrow">→</span>
</a>
<a class="project" href="https://spicypath.intentius.workers.dev">
<div class="project-info">
<div class="project-name">spicypath</div>
<div class="project-desc">A fast, zero-build profile inspector. Drop in a profile and explore it as a flame graph, timeline, sandwich, or radial view — nothing leaves your browser.</div>
</div>
<span class="arrow">→</span>
</a>
</div>
</main>
<footer>
<a href="https://github.com/intentius">github.com/intentius</a>
</footer>
</body>
</html>