Initial commit: static landing page with CI/CD
build / build-and-push (push) Failing after 1s

This commit is contained in:
nick
2026-07-12 05:53:08 +08:00
commit bc816c0925
5 changed files with 112 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>niq-dev.com</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
margin: 0;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
background: #0b0f14;
color: #e6edf3;
}
h1 {
font-weight: 500;
font-size: 1.5rem;
letter-spacing: 0.02em;
}
</style>
</head>
<body>
<h1>niq-dev.com</h1>
</body>
</html>