aethex-studio/public/index.html

77 lines
1.7 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AeThex Studio - Loading...</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
background: #0a0a0f;
color: white;
display: flex;
align-items: center;
justify-center;
min-height: 100vh;
}
.loader {
text-align: center;
}
.logo {
width: 80px;
height: 80px;
background: linear-gradient(135deg, #8b5cf6, #ec4899);
border-radius: 20px;
display: flex;
align-items: center;
justify-center;
font-size: 48px;
font-weight: bold;
color: white;
margin: 0 auto 20px;
animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
0%, 100% {
transform: scale(1);
opacity: 1;
}
50% {
transform: scale(1.05);
opacity: 0.8;
}
}
h1 {
font-size: 32px;
font-weight: 700;
background: linear-gradient(135deg, #8b5cf6, #ec4899);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 10px;
}
p {
color: #94a3b8;
font-size: 14px;
}
</style>
</head>
<body>
<div class="loader">
<div class="logo">A</div>
<h1>AeThex Studio</h1>
<p>Loading your development environment...</p>
</div>
<script>
// Redirect to Next.js app
setTimeout(() => {
window.location.href = '/';
}, 100);
</script>
</body>
</html>