mirror of
				https://github.com/MindWorkAI/AI-Studio.git
				synced 2025-10-31 13:20:20 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			737 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			737 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!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;
 | |
|             }
 | |
| 
 | |
|             @media (prefers-color-scheme: dark) {
 | |
|                 html, body {
 | |
|                     background-color: #1a1a1a;
 | |
|                 }
 | |
|             }
 | |
|         </style>
 | |
|     </head>
 | |
|     <body>
 | |
|         <img src="icon.png" width="512" height="512" alt="The app logo">
 | |
|     </body>
 | |
| </html> |