chatchoice / index.html
sturentz's picture
undefined - Initial Deployment
22dfdfe verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Interview Simulator</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.divider {
position: relative;
}
.divider:after {
content: "";
position: absolute;
top: 10%;
right: 0;
height: 80%;
width: 1px;
background-color: #334385;
}
.last-divider:after {
display: none;
}
@media (max-width: 768px) {
.divider:after {
display: none;
}
}
</style>
</head>
<body class="bg-gray-100 min-h-screen flex items-center justify-center p-4">
<div class="w-full max-w-6xl bg-white rounded-xl shadow-lg overflow-hidden flex flex-col md:flex-row">
<!-- Text Chat Column -->
<div class="divider p-8 flex-1 flex flex-col items-center text-center">
<div class="h-72 w-full bg-blue-50 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-comments text-6xl text-blue-400"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800 mb-4">Text-Based Interview</h3>
<p class="text-gray-600 mb-6">Practice your written communication skills with our realistic text chat simulator. Perfect for remote job interviews and professional messaging.</p>
<button class="bg-[#6dc5fb] hover:bg-blue-500 text-white font-medium py-2 px-6 rounded-lg transition-all duration-300 transform hover:scale-105">
Select Text Chat
</button>
</div>
<!-- Online Meeting Column -->
<div class="divider p-8 flex-1 flex flex-col items-center text-center">
<div class="h-72 w-full bg-purple-50 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-video text-6xl text-purple-400"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800 mb-4">Virtual Meeting</h3>
<p class="text-gray-600 mb-6">Simulate video conference interviews with our AI-powered platform. Get comfortable with virtual interviews before the real thing.</p>
<button class="bg-[#6dc5fb] hover:bg-blue-500 text-white font-medium py-2 px-6 rounded-lg transition-all duration-300 transform hover:scale-105">
Select Online Meeting
</button>
</div>
<!-- Roleplaying Column -->
<div class="divider last-divider p-8 flex-1 flex flex-col items-center text-center">
<div class="h-72 w-full bg-green-50 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-theater-masks text-6xl text-green-400"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800 mb-4">Scenario Roleplay</h3>
<p class="text-gray-600 mb-6">Engage in realistic job interview scenarios with dynamic roleplaying. Practice handling difficult questions and unexpected situations.</p>
<button class="bg-[#6dc5fb] hover:bg-blue-500 text-white font-medium py-2 px-6 rounded-lg transition-all duration-300 transform hover:scale-105">
Select Roleplaying
</button>
</div>
</div>
<script>
// Add hover effects and any interactive functionality here
document.querySelectorAll('button').forEach(button => {
button.addEventListener('mouseenter', () => {
button.classList.add('shadow-lg');
});
button.addEventListener('mouseleave', () => {
button.classList.remove('shadow-lg');
});
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=sturentz/chatchoice" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>