Added splash screen

This commit is contained in:
Tzahi12345
2023-04-17 22:51:33 -04:00
parent 771fe3d985
commit 4fd676d50c
7 changed files with 1982 additions and 10 deletions

28
src/assets/splash.html Normal file
View File

@@ -0,0 +1,28 @@
<!DOCTYPE html>
<html>
<head>
<title>Splash Screen</title>
<style>
body {
background-color: #222;
margin: 0;
padding: 0;
}
.center {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
img {
max-width: 100%;
max-height: 100%;
}
</style>
</head>
<body>
<div class="center">
<img src="images/logo_128px.png" alt="Logo">
</div>
</body>
</html>