AI-Studio/runtime/ui/index.html

53 lines
1.3 KiB
HTML
Raw Normal View History

2024-05-12 12:33:01 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>MindWork AI Studio</title>
<style>
html, body {
height: 100%;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
background-color: #ffffff;
}
img {
display: block;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
gap: 0;
}
p {
margin: 0;
font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
font-size: 80px;
font-weight: 700;
letter-spacing: 0;
color: #333333;
}
@media (prefers-color-scheme: dark) {
html, body {
background-color: #1a1a1a;
}
p {
color: #cccccc;
}
}
2024-05-12 12:33:01 +00:00
</style>
</head>
<body>
<div class="container">
<img src="icon.png" width="512" height="512" alt="The app logo">
<p>MindWork AI Studio</p>
</div>
2024-05-12 12:33:01 +00:00
</body>
</html>