File: //var/www/html/api.aianced.com/resources/views/welcome.blade.php
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Aianced API</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
background: #0a0a0f;
color: #fff;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.card {
background: #13131a;
border: 1px solid rgba(255,255,255,0.08);
border-radius: 16px;
padding: 48px;
max-width: 520px;
width: 90%;
text-align: center;
}
.status-dot {
display: inline-block;
width: 10px; height: 10px;
background: #22c55e;
border-radius: 50%;
margin-right: 8px;
animation: pulse 2s infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.4; }
}
.status-badge {
display: inline-flex;
align-items: center;
background: rgba(34,197,94,0.1);
border: 1px solid rgba(34,197,94,0.3);
border-radius: 99px;
padding: 6px 14px;
font-size: 13px;
color: #22c55e;
margin-bottom: 28px;
}
h1 {
font-size: 28px;
font-weight: 700;
margin-bottom: 8px;
background: linear-gradient(135deg, #fff 60%, #8b5cf6);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.subtitle {
color: rgba(255,255,255,0.45);
font-size: 14px;
margin-bottom: 36px;
}
.meta {
display: flex;
justify-content: center;
gap: 24px;
font-size: 12px;
color: rgba(255,255,255,0.25);
}
.meta span { display: flex; align-items: center; gap: 6px; }
</style>
</head>
<body>
<div class="card">
<div class="status-badge">
<span class="status-dot"></span>
Server is running
</div>
<h1>Aianced API</h1>
<p class="subtitle">AI-Powered Delivery Intelligence ยท Backend Service</p>
</div>
</body>
</html>