Spaces:
Sleeping
Sleeping
Create index.html
Browse files- static/index.html +74 -0
static/index.html
ADDED
@@ -0,0 +1,74 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>App Selector</title>
|
7 |
+
<style>
|
8 |
+
body {
|
9 |
+
font-family: Arial, sans-serif;
|
10 |
+
display: flex;
|
11 |
+
justify-content: center;
|
12 |
+
align-items: center;
|
13 |
+
height: 100vh;
|
14 |
+
margin: 0;
|
15 |
+
background-color: #f0f0f0;
|
16 |
+
}
|
17 |
+
.container {
|
18 |
+
display: flex;
|
19 |
+
gap: 20px;
|
20 |
+
flex-wrap: wrap;
|
21 |
+
justify-content: center;
|
22 |
+
}
|
23 |
+
.card {
|
24 |
+
background-color: white;
|
25 |
+
border-radius: 10px;
|
26 |
+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
27 |
+
padding: 20px;
|
28 |
+
width: 200px;
|
29 |
+
text-align: center;
|
30 |
+
cursor: pointer;
|
31 |
+
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
32 |
+
}
|
33 |
+
.card:hover {
|
34 |
+
transform: translateY(-5px);
|
35 |
+
box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
|
36 |
+
}
|
37 |
+
.card h2 {
|
38 |
+
margin-top: 0;
|
39 |
+
}
|
40 |
+
.card p {
|
41 |
+
color: #666;
|
42 |
+
}
|
43 |
+
.card-icon {
|
44 |
+
font-size: 48px;
|
45 |
+
margin-bottom: 10px;
|
46 |
+
}
|
47 |
+
</style>
|
48 |
+
</head>
|
49 |
+
<body>
|
50 |
+
<div class="container">
|
51 |
+
<a href="https://pvanand-specialized-agents.hf.space/digiyatra" target="_blank" style="text-decoration: none; color: inherit;">
|
52 |
+
<div class="card">
|
53 |
+
<div class="card-icon">✈️</div>
|
54 |
+
<h2>DigiYatra Assistant</h2>
|
55 |
+
<p>Your digital travel companion</p>
|
56 |
+
</div>
|
57 |
+
</a>
|
58 |
+
<a href="https://pvanand-specialized-agents.hf.space/followup-agent" target="_blank" style="text-decoration: none; color: inherit;">
|
59 |
+
<div class="card">
|
60 |
+
<div class="card-icon">🗨️</div>
|
61 |
+
<h2>Followup Agent</h2>
|
62 |
+
<p>Interactive chat </p>
|
63 |
+
</div>
|
64 |
+
</a>
|
65 |
+
<a href="https://pvanand-specialized-agents.hf.space/career" target="_blank" style="text-decoration: none; color: inherit;">
|
66 |
+
<div class="card">
|
67 |
+
<div class="card-icon">💼</div>
|
68 |
+
<h2>Career Agent</h2>
|
69 |
+
<p>Your personal career advisor</p>
|
70 |
+
</div>
|
71 |
+
</a>
|
72 |
+
</div>
|
73 |
+
</body>
|
74 |
+
</html>
|