-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
197 lines (183 loc) · 5.43 KB
/
Copy pathindex.php
File metadata and controls
197 lines (183 loc) · 5.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Project Ayu | Home</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css"
rel="stylesheet"
/>
<style>
@font-face {
font-family: "font";
src: url("../AYU/resources/font.ttf") format("truetype");
font-weight: normal;
font-style: normal;
}
* {
font-family: "font", sans-serif;
}
body {
background: linear-gradient(135deg, #3a0d23, #000000);
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
padding: 20px;
}
.gradient-box {
width: 98%;
max-width: 98%;
min-height: 50vh;
border-radius: 20px;
background: rgba(0, 0, 0, 0.6);
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.6);
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
padding: 20px;
position: relative;
}
.logo {
position: absolute;
top: 10px;
left: 10px;
width: 70px;
height: auto;
}
.center-top-logo {
position: absolute;
top: 10px;
left: 50%;
transform: translateX(-50%);
width: 120px;
height: auto;
}
.center-paragraph {
color: white;
text-align: center;
margin-top: 80px;
}
.custom-button {
margin-top: 10px;
padding: 10px 20px;
background-image: linear-gradient(to right, #e11f59, #1c0a11);
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
display: block;
margin: 10px auto;
}
.custom-button:hover {
background-image: linear-gradient(to right, #99173e, #060204);
transition: 0.9s;
}
.topic {
color: white;
font-size: 21px;
margin-top: -20px;
}
.paragraph-ayu {
color: white;
}
.robot-image {
max-width: 100%;
height: auto;
animation: float 3s ease-in-out infinite alternate;
}
@keyframes float {
0% {
transform: translateY(10px);
}
100% {
transform: translateY(-10px);
}
}
.content-row {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
text-align: center;
}
.content-row .col-md-12 {
text-align: center;
}
.paragraph-lg {
color: white;
text-align: left;
}
.footer {
text-align: center;
color: white;
margin-top: 20px;
font-size: 14px;
}
</style>
</head>
<body>
<div class="gradient-box">
<img
src="../AYU/resources/AI_AURO_WHITE.png"
alt="Logo"
class="logo"
/>
<img
src="../AYU//resources/ayu-logo.png"
alt="Center Top Logo"
class="center-top-logo mb-5"
/>
<div class="mt-4 pt-3">
<p class="center-paragraph">
Team Aura introduces the Health Assistant Robot, designed to support
personal health management. Tailored for Sri Lanka with Sinhala
language support, it provides health advice, monitors ailments, and
promotes a healthier lifestyle, ensuring accessibility for all.
</p>
<button
class="custom-button"
onclick="window.location.href='chatpage.php'"
>
Try Demo
</button>
</div>
<div class="col-12">
<h3 class="topic mb-3">Robot Ayu - Your Home Health Assistant</h3>
</div>
<div class="row content-row">
<div class="col-lg-6 col-md-12">
<p class="paragraph-lg">
Team Aura is proud to present the Health Assistant Robot, an
advanced and innovative tool designed to transform the way people
manage their health. This intelligent robot combines cutting-edge
technology with user-friendly features to provide personalized
health advice, monitor common ailments, and assist in daily health
routines. Tailored specifically for Sri Lanka, the robot integrates
Sinhala language support, ensuring that it is accessible and
practical for local communities. It can analyze symptoms, offer
preventive care tips, and guide users on managing chronic
conditions. By bridging the gap between technology and healthcare,
the Health Assistant Robot empowers individuals to take charge of
their well-being. With its focus on accessibility, innovation, and
usability, this robot represents a significant step forward in using
technology to improve everyday life. Team Aura envisions a future
where health management is seamless, personalized, and within reach
of everyone.
</p>
</div>
<div class="col-lg-6 col-md-12">
<img
src="../AYU//resources/robot.png"
alt="Health Assistant Robot"
class="robot-image"
/>
</div>
<div class="footer paragraph-lg">© 2025 AURA</div>
</div>
</div>
</body>
</html>