-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (36 loc) · 1.65 KB
/
Copy pathindex.html
File metadata and controls
36 lines (36 loc) · 1.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ytrofr - Open Source Projects</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: #0d1117; color: #c9d1d9; min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.container { max-width: 600px; padding: 2rem; text-align: center; }
h1 { font-size: 2rem; margin-bottom: 0.5rem; color: #f0f6fc; }
p { margin-bottom: 2rem; color: #8b949e; }
.projects { display: flex; flex-direction: column; gap: 1rem; }
a.project { display: block; padding: 1.25rem; border: 1px solid #30363d; border-radius: 8px; text-decoration: none; color: #58a6ff; transition: border-color 0.2s; }
a.project:hover { border-color: #58a6ff; }
a.project .name { font-size: 1.1rem; font-weight: 600; }
a.project .desc { font-size: 0.85rem; color: #8b949e; margin-top: 0.25rem; }
</style>
</head>
<body>
<div class="container">
<h1>ytrofr</h1>
<p>Open source projects</p>
<div class="projects">
<a class="project" href="https://ytrofr.github.io/claude-code-guide/">
<div class="name">Claude Code Guide</div>
<div class="desc">Comprehensive guide for Claude Code CLI</div>
</a>
<a class="project" href="https://ytrofr.github.io/claude-remotion-editor/">
<div class="name">Claude Remotion Editor</div>
<div class="desc">Interactive hand-path editor for Remotion video compositions</div>
</a>
</div>
</div>
</body>
</html>