links-page/index.html
dev-ugo 1a1b72d8b5
All checks were successful
Deploy / deploy (push) Successful in 38s
feat: initial links page with CI/CD workflow
2026-04-13 15:29:24 +02:00

24 lines
902 B
HTML

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ugo Preiswerk</title>
<style>
body { font-family: sans-serif; max-width: 480px; margin: 80px auto; padding: 0 20px; }
h1 { font-size: 1.4rem; margin-bottom: 8px; }
p { color: #666; margin-bottom: 32px; }
a { display: block; padding: 14px 18px; margin-bottom: 12px; border: 1px solid #e0e0e0; border-radius: 8px; text-decoration: none; color: #111; transition: background .15s; }
a:hover { background: #f5f5f5; }
</style>
</head>
<body>
<h1>Ugo Preiswerk</h1>
<p>Dev junior · DevOps learner</p>
<a href="https://ugo-preiswerk.site">Portfolio</a>
<a href="https://blog.ugo-preiswerk.site">Blog</a>
<a href="https://git.ugo-preiswerk.site">Gitea</a>
<a href="https://uptime.ugo-preiswerk.site">Uptime</a>
</body>
</html>