Spaces:
Sleeping
Sleeping
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>App Selector</title> | |
<style> | |
body { | |
font-family: Arial, sans-serif; | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
height: 100vh; | |
margin: 0; | |
background-color: #f0f0f0; | |
} | |
.container { | |
display: flex; | |
gap: 20px; | |
flex-wrap: wrap; | |
justify-content: center; | |
} | |
.card { | |
background-color: white; | |
border-radius: 10px; | |
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); | |
padding: 20px; | |
width: 200px; | |
text-align: center; | |
cursor: pointer; | |
transition: transform 0.3s ease, box-shadow 0.3s ease; | |
} | |
.card:hover { | |
transform: translateY(-5px); | |
box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); | |
} | |
.card h2 { | |
margin-top: 0; | |
} | |
.card p { | |
color: #666; | |
} | |
.card-icon { | |
font-size: 48px; | |
margin-bottom: 10px; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="container"> | |
<a href="/digiyatra" style="text-decoration: none; color: inherit;"> | |
<div class="card"> | |
<div class="card-icon">✈️</div> | |
<h2>DigiYatra Assistant</h2> | |
<p>Your digital travel companion</p> | |
</div> | |
</a> | |
<a href="/followup-agent" style="text-decoration: none; color: inherit;"> | |
<div class="card"> | |
<div class="card-icon">🗨️</div> | |
<h2>Followup Agent</h2> | |
<p>Interactive chat </p> | |
</div> | |
</a> | |
<a href="/career" style="text-decoration: none; color: inherit;"> | |
<div class="card"> | |
<div class="card-icon">💼</div> | |
<h2>Career Agent</h2> | |
<p>Your personal career advisor</p> | |
</div> | |
</a> | |
</div> | |
</body> | |
</html> |