careerglow-navigator / index.html
tharshitha05's picture
Tech Stack (Simple + Free APIs)
b487d5d verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CareerGlow Navigator</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/animejs/lib/anime.min.js"></script>
<style>
body {
background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9)),
url('http://static.photos/technology/1200x630/42') no-repeat center center fixed;
background-size: cover;
color: #e2e8f0;
min-height: 100vh;
}
.glow-card {
background: rgba(15, 23, 42, 0.7);
border: 1px solid rgba(56, 189, 248, 0.3);
transition: all 0.3s ease;
}
.glow-card:hover {
box-shadow: 0 0 15px rgba(56, 189, 248, 0.5);
transform: translateY(-5px);
}
.pulse {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7); }
70% { box-shadow: 0 0 0 10px rgba(56, 189, 248, 0); }
100% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0); }
}
</style>
</head>
<body class="font-sans">
<div class="container mx-auto px-4 py-12">
<header class="flex justify-between items-center mb-16">
<div class="flex items-center space-x-2">
<svg width="40" height="40" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z" stroke="#38bdf8" stroke-width="2"/>
<path d="M12 8V16M8 12H16" stroke="#38bdf8" stroke-width="2"/>
</svg>
<h1 class="text-3xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-cyan-400 to-blue-500">
CareerGlow
</h1>
</div>
<nav class="hidden md:flex space-x-8">
<a href="#" class="hover:text-cyan-400 transition">Features</a>
<a href="#" class="hover:text-cyan-400 transition">Roadmap</a>
<a href="#" class="hover:text-cyan-400 transition">Resources</a>
<a href="login.html" class="px-4 py-2 bg-cyan-600 rounded-md hover:bg-cyan-700 transition">Login</a>
</nav>
</header>
<main class="text-center">
<div class="max-w-3xl mx-auto mb-20">
<h2 class="text-5xl font-bold mb-6 leading-tight">
Illuminate Your <span class="text-cyan-400">Career Path</span> with AI Guidance
</h2>
<p class="text-xl opacity-90 mb-10">
Personalized career navigation with real-time job insights, skill roadmaps, and interview preparation - all in one platform.
</p>
<a href="signup.html" class="inline-block px-8 py-3 bg-cyan-600 hover:bg-cyan-700 rounded-full text-lg font-medium pulse">
Get Started - It's Free
</a>
</div>
<div class="grid md:grid-cols-3 gap-8 mb-20">
<div class="glow-card p-8 rounded-xl">
<div class="w-16 h-16 bg-cyan-900/50 rounded-full flex items-center justify-center mb-6 mx-auto">
<i data-feather="trending-up" class="text-cyan-400 w-8 h-8"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Industry Insights</h3>
<p class="opacity-80">Real-time salary data and job market trends to inform your career decisions.</p>
</div>
<div class="glow-card p-8 rounded-xl">
<div class="w-16 h-16 bg-cyan-900/50 rounded-full flex items-center justify-center mb-6 mx-auto">
<i data-feather="map" class="text-cyan-400 w-8 h-8"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Skill Roadmap</h3>
<p class="opacity-80">Personalized learning paths with curated resources from top platforms.</p>
</div>
<div class="glow-card p-8 rounded-xl">
<div class="w-16 h-16 bg-cyan-900/50 rounded-full flex items-center justify-center mb-6 mx-auto">
<i data-feather="mic" class="text-cyan-400 w-8 h-8"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Mock Interviews</h3>
<p class="opacity-80">Practice with AI-powered feedback and speech analysis.</p>
</div>
</div>
</main>
</div>
<script>
feather.replace();
anime({
targets: '.glow-card',
opacity: [0, 1],
translateY: [30, 0],
delay: anime.stagger(200),
easing: 'easeOutExpo'
});
</script>
</body>
</html>