Add VacLab splash page - Partially addresses #10

This commit is contained in:
Benjamin Arntzen
2024-08-24 14:36:48 +09:00
parent 8748cab082
commit 15a57739c1

28
splashpage/index.html Normal file
View File

@@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VacLab</title>
<style>
body {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: black;
}
img {
max-width: 100%;
max-height: 100%;
}
</style>
</head>
<body>
<a href="https://github.com/vacp2p/vaclab">
<img src="https://raw.githubusercontent.com/riffcc/rifflabs/main/static/img/vac-logo-black.jpg">
</a>
</body>
</html>