mirror of
https://github.com/lumina-rocks/lumina.git
synced 2026-06-06 18:51:16 +02:00
41 lines
1.1 KiB
HTML
41 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>LUMINA</title>
|
|
<style>
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
background-color: #f5f5f5;
|
|
}
|
|
.loading {
|
|
text-align: center;
|
|
}
|
|
.loading img {
|
|
max-width: 150px;
|
|
}
|
|
.loading p {
|
|
margin-top: 20px;
|
|
color: #666;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="loading">
|
|
<img src="/lumina.png" alt="LUMINA" />
|
|
<p>Loading LUMINA...</p>
|
|
</div>
|
|
<script>
|
|
// This page will only be shown briefly before redirecting to the actual app
|
|
window.location.href = "https://lumina.rocks";
|
|
</script>
|
|
</body>
|
|
</html>
|