Added loading screen

This commit is contained in:
Thorsten Sommer 2024-05-12 14:33:01 +02:00
parent 5ca529be9e
commit 013e1b9a3f
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108
3 changed files with 28 additions and 1 deletions

View File

@ -1,7 +1,7 @@
{
"build": {
"devPath": "http://localhost:5000",
"distDir": "http://localhost:5000",
"distDir": "ui/",
"withGlobalTauri": true
},
"package": {

BIN
runtime/ui/icon.jpg (Stored with Git LFS) Normal file

Binary file not shown.

24
runtime/ui/index.html Normal file
View File

@ -0,0 +1,24 @@
<!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;
}
</style>
</head>
<body>
<img src="icon.jpg" width="512px" height="512px" alt="The app logo">
</body>
</html>