Initial website commit

This commit is contained in:
2026-03-29 21:08:06 +03:00
commit 021d53fe13
2 changed files with 31 additions and 0 deletions

12
.woodpecker.yml Normal file
View File

@@ -0,0 +1,12 @@
when:
branch: main
event: push
steps:
deploy:
image: alpine
commands:
- echo "Deploying to /webroot..."
- apk add --no-cache rsync
- rsync -av --delete --exclude='.git' --exclude='.woodpecker.yml' ./ /webroot/
- echo "Deploy complete"

19
index.html Normal file
View File

@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>k-boris.tech</title>
<style>
body { font-family: sans-serif; display: flex; align-items: center; justify-content: center; min-height: 100vh; margin: 0; background: #0f172a; color: #e2e8f0; }
h1 { font-size: 2.5rem; letter-spacing: -0.05em; }
p { color: #94a3b8; }
</style>
</head>
<body>
<div style="text-align:center">
<h1>k-boris.tech</h1>
<p>Coming soon.</p>
</div>
</body>
</html>