-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (68 loc) · 1.95 KB
/
Copy pathindex.html
File metadata and controls
68 lines (68 loc) · 1.95 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DataPilot AI</title>
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
background-color: #f8fafc;
color: #1e293b;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
padding: 20px;
}
.card {
background: #ffffff;
border-radius: 16px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
max-width: 600px;
width: 100%;
padding: 40px;
text-align: center;
border: 1px solid #e2e8f0;
}
.logo-title {
font-size: 2.2rem;
font-weight: 700;
color: #0f172a;
margin-bottom: 12px;
}
.subtitle {
font-size: 1.1rem;
color: #64748b;
margin-bottom: 28px;
line-height: 1.6;
}
.btn {
display: inline-block;
background-color: #2563eb;
color: #ffffff;
text-decoration: none;
padding: 14px 32px;
font-size: 1rem;
font-weight: 600;
border-radius: 8px;
transition: background-color 0.2s ease;
}
.btn:hover {
background-color: #1d4ed8;
}
</style>
</head>
<body>
<div class="card">
<h1 class="logo-title">DataPilot AI 🧠</h1>
<p class="subtitle">Turn your raw data into insights in minutes. Clean, analyze, visualize, and generate report automatically.</p>
<a href="https://datapilot-analytics.streamlit.app/" class="btn">Launch Application</a>
</div>
</body>
</html>