-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (29 loc) · 1.01 KB
/
index.html
File metadata and controls
32 lines (29 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>GoNow Logistics Systems</title>
</head>
<body>
<div id="root">
<div
style="display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100vh; font-family: sans-serif; background-color: #f9fafb;">
<div
style="width: 48px; height: 48px; border: 4px solid #e5e7eb; border-top-color: #4f46e5; border-radius: 50%; animation: spin 0.8s linear infinite;">
</div>
<h2 style="margin-top: 16px; color: #374151; font-weight: 600;">GoNow Logistics Systems</h2>
<p style="margin-top: 8px; color: #6b7280; font-size: 0.875rem;">Loading application...</p>
</div>
<style>
@keyframes spin {
to {
transform: rotate(360deg);
}
}
</style>
</div>
<script type="module" src="/index.tsx"></script>
</body>
</html>