22 lines
894 B
HTML
22 lines
894 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Butterfly Desktop</title>
|
|
<style>
|
|
body { margin: 0; font-family: system-ui, sans-serif; background: #0078d4; color: #fff; display: flex; align-items: center; justify-content: center; height: 100vh; }
|
|
.loader { text-align: center; }
|
|
.spinner { border: 4px solid rgba(255,255,255,.3); border-top: 4px solid #fff; border-radius: 50%; width: 48px; height: 48px; animation: spin 1s linear infinite; margin: 0 auto 16px; }
|
|
@keyframes spin { to { transform: rotate(360deg); } }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="loader">
|
|
<div class="spinner"></div>
|
|
<p>Butterfly Desktop Environment — loading…</p>
|
|
</div>
|
|
<!-- Angular app will replace this once built -->
|
|
</body>
|
|
</html>
|