-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (73 loc) · 2.4 KB
/
Copy pathindex.html
File metadata and controls
73 lines (73 loc) · 2.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alice QI</title>
<meta name="description" content="Alice quantum intelligence agent">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Inter', -apple-system, sans-serif;
background: #000000;
color: #FFFFFF;
line-height: 1.6;
}
.hero {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 4rem 2rem;
background: radial-gradient(circle, rgba(119, 0, 255, 0.15), transparent 70%);
}
h1 {
font-size: clamp(3rem, 8vw, 6rem);
font-weight: 800;
margin-bottom: 2rem;
background: linear-gradient(135deg, #FF0066 0%, #D600AA 50%, #7700FF 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.icon { font-size: 6rem; margin-bottom: 2rem; }
.tagline {
font-size: clamp(1.25rem, 3vw, 2rem);
color: rgba(255, 255, 255, 0.8);
margin-bottom: 3rem;
}
.btn {
display: inline-block;
padding: 1rem 2.5rem;
background: linear-gradient(135deg, #FF0066 0%, #D600AA 50%, #7700FF 100%);
color: #FFF;
text-decoration: none;
border-radius: 12px;
font-weight: 600;
transition: transform 0.3s;
margin: 0.5rem;
}
.btn:hover { transform: translateY(-2px); }
.footer {
text-align: center;
padding: 3rem 2rem;
color: rgba(255, 255, 255, 0.5);
}
</style>
</head>
<body>
<div class="hero">
<div>
<div class="icon">🌟</div>
<h1>Alice QI</h1>
<p class="tagline">Migration AI • Autonomous Agent • QI System</p>
<a href="https://blackroad.io" class="btn">Explore BlackRoad OS</a>
<a href="https://github.com/BlackRoad-OS" class="btn">GitHub</a>
</div>
</div>
<footer class="footer">
<p>© 2025 BlackRoad. Part of the BlackRoad OS ecosystem.</p>
</footer>
</body>
</html>