Initial commit

This commit is contained in:
2026-03-28 04:17:29 +01:00
commit 1db9c88fc7
2 changed files with 46 additions and 0 deletions

45
index.html Normal file
View File

@@ -0,0 +1,45 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>andrejus.dev</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, monospace;
background: #0d1117;
color: #c9d1d9;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 2rem;
}
h1 { color: #f0f6fc; margin-bottom: 0.5rem; }
p { color: #8b949e; margin-bottom: 2rem; }
.repos { list-style: none; width: 100%; max-width: 600px; }
.repos li { margin-bottom: 0.75rem; }
.repos a {
display: block;
padding: 1rem 1.25rem;
background: #161b22;
border: 1px solid #30363d;
border-radius: 6px;
color: #58a6ff;
text-decoration: none;
transition: border-color 0.2s;
}
.repos a:hover { border-color: #58a6ff; }
.repos .desc { color: #8b949e; font-size: 0.875rem; margin-top: 0.25rem; }
</style>
</head>
<body>
<h1>andrejus.dev</h1>
<p>Public projects</p>
<ul class="repos">
<!-- Add public repos here as they are exposed -->
</ul>
</body>
</html>