-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp9.html
More file actions
218 lines (197 loc) · 4.86 KB
/
app9.html
File metadata and controls
218 lines (197 loc) · 4.86 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Your AI Assistant</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body, html {
height: 100%;
width: 100%;
font-family: 'Segoe UI', sans-serif;
}
.bg {
background: url('https://skibi-di.com/ai_person_expand.png') no-repeat center center;
background-size: cover;
height: 100%;
width: 100%;
position: absolute;
z-index: -1;
filter: brightness(1); /* tweak for darkness/lightness */
}
.content {
position: relative;
height: 100%;
width: 100%;
display: flex;
justify-content: flex-start;
align-items: center;
padding: 2rem 4rem;
color: white;
text-align: left;
}
.text-box {
max-width: 600px;
background-color: rgba(0, 0, 0, 0.6); /* Optional for contrast */
padding: 2rem;
border-radius: 12px;
}
.text-box h1 {
font-size: 2.8rem;
margin-bottom: 1rem;
}
.text-box p {
font-size: 1.2rem;
margin-bottom: 2rem;
color: #ddd;
}
.buttons {
display: flex;
gap: 1rem;
flex-wrap: wrap;
}
.buttons a {
padding: 0.8rem 1.6rem;
border-radius: 8px;
font-weight: 500;
text-decoration: none;
transition: background 0.3s ease;
}
.buttons a.primary {
background-color: #fff;
color: #000;
}
.buttons a.secondary {
border: 1px solid #fff;
color: #fff;
}
@media (max-width: 768px) {
.text-box h1 {
font-size: 2rem;
}
.text-box p {
font-size: 1rem;
}
.buttons {
flex-direction: column;
}
.buttons a {
width: 100%;
text-align: center;
}
}
</style>
</head>
<body>
<div class="bg"></div>
<div class="content">
<div class="text-box">
<h1>Your AI. <br />Your Rules.</h1>
<p>Create your own AI assistant — fully customizable, built to serve your needs, and share it with others.</p>
<div class="buttons">
<a href="https://play.google.com/store/apps/details?id=com.live2d.demo&pcampaignid=web_share" class="primary">Download on Android</a>
<a href="#about" class="secondary">Learn More</a>
</div>
</div>
</div>
<section id="about">
<div class="container">
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About NeuroVie</title>
<style>
body {
background-color: #0a0a0a;
color: white;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.container {
max-width: 1000px;
margin: auto;
padding: 2rem;
text-align: center;
}
h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
color: #00bfff;
}
.hero-image {
position: relative;
display: inline-block;
}
.hero-image img {
width: 100%;
border-radius: 10px;
}
h2 {
margin-top: 3rem;
font-size: 1.5rem;
font-weight: bold;
color: #00bfff;
}
p.purpose {
font-size: 1.2rem;
margin-bottom: 2rem;
color: #ddd;
}
.grid {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-top: 2rem;
}
.card {
width: 45%;
margin-bottom: 2rem;
background-color: #1a1a1a;
padding: 1rem;
border-radius: 10px;
text-align: left;
}
.card h3 {
color: #00bfff;
font-size: 1.2rem;
margin-bottom: 0.5rem;
}
.card p {
color: #aaa;
font-size: 0.95rem;
}
@media (max-width: 768px) {
.card {
width: 100%;
}
}
.styled-iframe {
width: 100%;
height: 500px;
border: none; /* removes border */
border-radius: 12px; /* rounds corners */
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); /* adds shadow */
}
</style>
</head>
<body>
<div class="container">
<h1>About NeuroVie</h1>
<p class="purpose">
NeuroVie is redefining digital AI assistants that help users stay organized, and automate everyday tasks with ease. With NeuroVie, you have total control — from customizing the assistant’s behavior and appearance to using it seamlessly across all your devices.
</p>
</div>
</body>
</html>
</div>
</section>
</body>
</html>