codecraft-academy / about.html
saeidmp's picture
debug and improved
ba343fc verified
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About | Spadak Code Learn</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<link rel="stylesheet" href="style.css">
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script>
tailwind.config = {
darkMode: 'class',
theme: {
extend: {
colors: {
primary: {
500: '#f97316',
},
secondary: {
500: '#f59e0b',
}
}
}
}
}
</script>
</head>
<body class="bg-gray-900 text-gray-100">
<custom-navbar></custom-navbar>
<!-- About Section -->
<section class="pt-24 pb-16 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto">
<div class="text-center mb-16">
<h1 class="text-4xl font-extrabold text-white sm:text-5xl mb-4">
<span class="block">About Spadak Code Learn</span>
<span class="block text-orange-500 bg-gradient-to-r from-orange-500 to-amber-500 bg-clip-text text-transparent">Our Mission and Vision</span>
</h1>
<p class="max-w-3xl mx-auto text-lg text-gray-300">
We're revolutionizing the way people learn to code by providing high-quality, interactive education accessible to everyone.
</p>
</div>
<div class="grid md:grid-cols-2 gap-12">
<div class="bg-gray-800 rounded-2xl p-8">
<h2 class="text-2xl font-bold text-white mb-6">Our Story</h2>
<p class="text-gray-300 mb-4">
Founded in 2020, Spadak Code Learn began as a small project to help friends learn web development. Today, we've grown into a global community of over 100,000 learners.
</p>
<p class="text-gray-300">
Our team consists of passionate developers and educators committed to making coding education accessible, engaging, and effective.
</p>
</div>
<div class="bg-gray-800 rounded-2xl p-8">
<h2 class="text-2xl font-bold text-white mb-6">Our Approach</h2>
<ul class="space-y-4 text-gray-300">
<li class="flex items-start">
<i data-feather="check-circle" class="text-green-500 mr-3 mt-1 flex-shrink-0"></i>
<span>Project-based learning with real-world applications</span>
</li>
<li class="flex items-start">
<i data-feather="check-circle" class="text-green-500 mr-3 mt-1 flex-shrink-0"></i>
<span>Interactive coding exercises with instant feedback</span>
</li>
<li class="flex items-start">
<i data-feather="check-circle" class="text-green-500 mr-3 mt-1 flex-shrink-0"></i>
<span>Community-driven support and mentorship</span>
</li>
<li class="flex items-start">
<i data-feather="check-circle" class="text-green-500 mr-3 mt-1 flex-shrink-0"></i>
<span>Career-focused curriculum aligned with industry needs</span>
</li>
</ul>
</div>
</div>
<div class="mt-16 bg-gradient-to-r from-orange-500 to-amber-500 rounded-2xl p-8 md:p-12 text-white">
<div class="max-w-4xl mx-auto text-center">
<h2 class="text-3xl font-bold mb-6">Join Our Growing Community</h2>
<p class="text-lg mb-8">
Over 50,000 developers have transformed their careers with our courses. Be the next success story!
</p>
<a href="courses.html" class="inline-flex items-center justify-center px-8 py-4 border border-transparent text-lg font-bold rounded-xl text-orange-500 bg-white hover:bg-gray-50 transition-all duration-200 shadow-lg">
Explore Our Courses
<i data-feather="arrow-right" class="ml-3 w-5 h-5"></i>
</a>
</div>
</div>
</section>
<custom-footer></custom-footer>
<script src="script.js"></script>
<script>
feather.replace();
</script>
</body>
</html>