feat: first draft

This commit is contained in:
ange 2024-07-17 00:15:41 +02:00
commit 1847385b53
Signed by: ange
GPG Key ID: 9E0C4157BB7BEB1D
3 changed files with 46 additions and 0 deletions

2
Dockerfile Normal file
View File

@ -0,0 +1,2 @@
FROM docker.io/nginx:latest
COPY html/ /usr/share/nginx/html/

6
compose.yaml Normal file
View File

@ -0,0 +1,6 @@
---
services:
app:
build: .
ports:
- "8000:80"

38
html/index.html Normal file
View File

@ -0,0 +1,38 @@
<!DOCTYPE html>
<meta charset="UTF-8">
<html>
<head>
<style>
table, th, td {
border: 2px solid black;
border-collapse: collapse;
padding: 1ex;
}
</style>
</head>
<body>
<h1>⚠️ Site en construction! ⚠️</h1>
<table>
<tr>
<th>Plateforme</th>
<th>Contact</th>
</tr>
<tr>
<td>Matrix (Element)</td>
<td><a href="https://app.element.io/#/user/@ange:gmoker.com">@ange:gmoker.com</a></td>
</tr>
<tr>
<td>Discord</td>
<td>@elrilio</td>
</tr>
<tr>
<td>Tel</td>
<td><a href="tel:+33582951623">+33 5 82 95 16 23</a></td>
</tr>
<tr>
<td>Email</td>
<td><a href="mailto:ange@yw5n.com">ange@yw5n.com</a></td>
</tr>
</table>
</body>
</html>