-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (76 loc) · 2.12 KB
/
index.html
File metadata and controls
76 lines (76 loc) · 2.12 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DeepTrace - Cold Case Investigation Platform</title>
<meta http-equiv="refresh" content="0; url=/cases">
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
margin: 0;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
text-align: center;
padding: 2rem;
}
.container {
max-width: 500px;
}
h1 {
font-size: 3rem;
margin-bottom: 1rem;
font-weight: 700;
}
p {
font-size: 1.25rem;
opacity: 0.9;
margin-bottom: 2rem;
}
a {
display: inline-block;
padding: 1rem 2rem;
background: white;
color: #667eea;
text-decoration: none;
border-radius: 8px;
font-weight: 600;
font-size: 1.125rem;
transition: transform 0.2s;
}
a:hover {
transform: translateY(-2px);
}
.spinner {
display: inline-block;
width: 40px;
height: 40px;
border: 4px solid rgba(255, 255, 255, 0.3);
border-radius: 50%;
border-top-color: white;
animation: spin 1s linear infinite;
margin: 2rem 0;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
</style>
</head>
<body>
<div class="container">
<h1>DeepTrace</h1>
<p>Cold Case Investigation Platform</p>
<div class="spinner"></div>
<p>Redirecting to case selector...</p>
<p><a href="/cases">Click here if not redirected</a></p>
</div>
<script>
// Immediate redirect
window.location.href = '/cases';
</script>
</body>
</html>