codecraft-wizardry / index.html
mehranbehnam's picture
چه کدهایی میتونی درست کنی تخصصت چیه
dc4b942 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>CodeCraft Wizardry</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
darkMode: 'class',
theme: {
extend: {
colors: {
primary: '#3B82F6',
secondary: '#10B981'
}
}
}
}
</script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<style>
.hero-gradient {
background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
}
.skill-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
</style>
</head>
<body class="bg-gray-50 dark:bg-gray-900 transition-colors duration-300">
<!-- Navigation -->
<nav class="bg-white dark:bg-gray-800 shadow-sm sticky top-0 z-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<i data-feather="code" class="text-primary-500 dark:text-primary-400"></i>
<span class="ml-2 text-xl font-bold text-gray-900 dark:text-white">CodeCraft</span>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="#" class="text-primary-500 dark:text-primary-400 font-medium">Home</a>
<a href="#" class="text-gray-600 dark:text-gray-300 hover:text-primary-500 dark:hover:text-primary-400">Services</a>
<a href="#" class="text-gray-600 dark:text-gray-300 hover:text-primary-500 dark:hover:text-primary-400">Portfolio</a>
<a href="#" class="text-gray-600 dark:text-gray-300 hover:text-primary-500 dark:hover:text-primary-400">Contact</a>
<button class="bg-primary-500 hover:bg-primary-600 text-white px-4 py-2 rounded-lg transition">
Get Started
</button>
</div>
<button class="md:hidden text-gray-500 dark:text-gray-300">
<i data-feather="menu"></i>
</button>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="hero-gradient py-20">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<h1 class="text-4xl md:text-5xl font-bold text-gray-900 dark:text-white mb-4">
Digital Wizardry <span class="text-primary-500">Crafted</span> to Perfection
</h1>
<p class="text-lg text-gray-600 dark:text-gray-300 mb-8">
I specialize in creating magical digital experiences with cutting-edge web technologies. From responsive UIs to interactive animations, I bring ideas to life.
</p>
<div class="flex space-x-4">
<button class="bg-primary-500 hover:bg-primary-600 text-white px-6 py-3 rounded-lg font-medium transition">
Explore My Work
</button>
<button class="border border-gray-300 dark:border-gray-600 text-gray-700 dark:text-gray-300 hover:bg-gray-100 dark:hover:bg-gray-800 px-6 py-3 rounded-lg font-medium transition">
<i data-feather="github" class="inline mr-2"></i> GitHub
</button>
</div>
</div>
<div class="md:w-1/2">
<div class="relative">
<div class="absolute -top-6 -left-6 w-64 h-64 bg-secondary-500 rounded-full mix-blend-multiply filter blur-xl opacity-20 animate-blob"></div>
<div class="absolute -bottom-8 -right-8 w-64 h-64 bg-primary-500 rounded-full mix-blend-multiply filter blur-xl opacity-20 animate-blob animation-delay-2000"></div>
<div class="relative bg-white dark:bg-gray-800 rounded-2xl shadow-xl p-6">
<div class="flex items-center mb-4">
<div class="w-3 h-3 rounded-full bg-red-500 mr-2"></div>
<div class="w-3 h-3 rounded-full bg-yellow-500 mr-2"></div>
<div class="w-3 h-3 rounded-full bg-green-500"></div>
</div>
<pre class="text-sm text-gray-800 dark:text-gray-200 overflow-x-auto">
<span class="text-purple-500">const</span> <span class="text-blue-500">skills</span> = {
<span class="text-green-500">frontend</span>: [<span class="text-yellow-500">'React'</span>, <span class="text-yellow-500">'Vue'</span>, <span class="text-yellow-500">'TailwindCSS'</span>],
<span class="text-green-500">backend</span>: [<span class="text-yellow-500">'Node.js'</span>, <span class="text-yellow-500">'Express'</span>, <span class="text-yellow-500">'MongoDB'</span>],
<span class="text-green-500">design</span>: [<span class="text-yellow-500">'Figma'</span>, <span class="text-yellow-500">'Adobe XD'</span>, <span class="text-yellow-500">'UI/UX'</span>],
<span class="text-green-500">animation</span>: [<span class="text-yellow-500">'GSAP'</span>, <span class="text-yellow-500">'Three.js'</span>, <span class="text-yellow-500">'Vanta.js'</span>]
};</pre>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Skills Section -->
<section class="py-20 bg-gray-100 dark:bg-gray-800">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-900 dark:text-white mb-4">My Magical Toolbox</h2>
<p class="text-lg text-gray-600 dark:text-gray-300 max-w-2xl mx-auto">
I wield these powerful technologies to create digital spells that enchant users and solve complex problems.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Skill Card 1 -->
<div class="skill-card bg-white dark:bg-gray-700 rounded-xl shadow-md p-6 transition duration-300">
<div class="w-12 h-12 bg-primary-100 dark:bg-primary-900 rounded-lg flex items-center justify-center mb-4">
<i data-feather="layout" class="text-primary-500 dark:text-primary-400 w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold text-gray-900 dark:text-white mb-2">UI/UX Design</h3>
<p class="text-gray-600 dark:text-gray-300">
Crafting intuitive and beautiful interfaces that users love. Focused on accessibility and seamless user journeys.
</p>
</div>
<!-- Skill Card 2 -->
<div class="skill-card bg-white dark:bg-gray-700 rounded-xl shadow-md p-6 transition duration-300">
<div class="w-12 h-12 bg-secondary-100 dark:bg-secondary-900 rounded-lg flex items-center justify-center mb-4">
<i data-feather="code" class="text-secondary-500 dark:text-secondary-400 w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold text-gray-900 dark:text-white mb-2">Frontend Development</h3>
<p class="text-gray-600 dark:text-gray-300">
Building responsive, performant web applications with React, Vue, and modern CSS frameworks like Tailwind.
</p>
</div>
<!-- Skill Card 3 -->
<div class="skill-card bg-white dark:bg-gray-700 rounded-xl shadow-md p-6 transition duration-300">
<div class="w-12 h-12 bg-purple-100 dark:bg-purple-900 rounded-lg flex items-center justify-center mb-4">
<i data-feather="server" class="text-purple-500 dark:text-purple-400 w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold text-gray-900 dark:text-white mb-2">Backend Development</h3>
<p class="text-gray-600 dark:text-gray-300">
Creating robust APIs and server-side logic with Node.js, Express, and various database technologies.
</p>
</div>
<!-- Skill Card 4 -->
<div class="skill-card bg-white dark:bg-gray-700 rounded-xl shadow-md p-6 transition duration-300">
<div class="w-12 h-12 bg-yellow-100 dark:bg-yellow-900 rounded-lg flex items-center justify-center mb-4">
<i data-feather="smartphone" class="text-yellow-500 dark:text-yellow-400 w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold text-gray-900 dark:text-white mb-2">Mobile Development</h3>
<p class="text-gray-600 dark:text-gray-300">
Building cross-platform mobile applications with React Native and Flutter for iOS and Android.
</p>
</div>
<!-- Skill Card 5 -->
<div class="skill-card bg-white dark:bg-gray-700 rounded-xl shadow-md p-6 transition duration-300">
<div class="w-12 h-12 bg-red-100 dark:bg-red-900 rounded-lg flex items-center justify-center mb-4">
<i data-feather="bar-chart-2" class="text-red-500 dark:text-red-400 w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold text-gray-900 dark:text-white mb-2">Data Visualization</h3>
<p class="text-gray-600 dark:text-gray-300">
Creating interactive charts and data stories with D3.js, Chart.js, and other visualization libraries.
</p>
</div>
<!-- Skill Card 6 -->
<div class="skill-card bg-white dark:bg-gray-700 rounded-xl shadow-md p-6 transition duration-300">
<div class="w-12 h-12 bg-green-100 dark:bg-green-900 rounded-lg flex items-center justify-center mb-4">
<i data-feather="zap" class="text-green-500 dark:text-green-400 w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold text-gray-900 dark:text-white mb-2">Animation & Effects</h3>
<p class="text-gray-600 dark:text-gray-300">
Adding life to websites with GSAP, Three.js, and WebGL animations for immersive experiences.
</p>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-20 bg-primary-500 text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<h2 class="text-3xl font-bold mb-6">Ready to Start Your Digital Journey?</h2>
<p class="text-xl mb-8 max-w-3xl mx-auto opacity-90">
Whether you need a stunning website, a powerful web app, or just some magical digital advice, I'm here to help.
</p>
<button class="bg-white text-primary-500 hover:bg-gray-100 px-8 py-4 rounded-lg font-bold text-lg shadow-lg transition">
Let's Talk <i data-feather="arrow-right" class="inline ml-2"></i>
</button>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-800 text-gray-300 py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<div class="flex items-center mb-4">
<i data-feather="code" class="text-primary-500"></i>
<span class="ml-2 text-xl font-bold text-white">CodeCraft</span>
</div>
<p class="mb-4">
Creating digital magic since 2023. Crafting experiences that delight and perform.
</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="github"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="linkedin"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="dribbble"></i>
</a>
</div>
</div>
<div>
<h3 class="text-white font-semibold mb-4">Services</h3>
<ul class="space-y-2">
<li><a href="#" class="hover:text-white transition">UI/UX Design</a></li>
<li><a href="#" class="hover:text-white transition">Web Development</a></li>
<li><a href="#" class="hover:text-white transition">Mobile Apps</a></li>
<li><a href="#" class="hover:text-white transition">Animation</a></li>
</ul>
</div>
<div>
<h3 class="text-white font-semibold mb-4">Resources</h3>
<ul class="space-y-2">
<li><a href="#" class="hover:text-white transition">Blog</a></li>
<li><a href="#" class="hover:text-white transition">Tutorials</a></li>
<li><a href="#" class="hover:text-white transition">Free Templates</a></li>
<li><a href="#" class="hover:text-white transition">Design System</a></li>
</ul>
</div>
<div>
<h3 class="text-white font-semibold mb-4">Contact</h3>
<ul class="space-y-2">
<li class="flex items-center">
<i data-feather="mail" class="w-4 h-4 mr-2"></i>
<span>hello@codecraft.dev</span>
</li>
<li class="flex items-center">
<i data-feather="phone" class="w-4 h-4 mr-2"></i>
<span>+1 (555) 123-4567</span>
</li>
<li class="flex items-center">
<i data-feather="map-pin" class="w-4 h-4 mr-2"></i>
<span>San Francisco, CA</span>
</li>
</ul>
</div>
</div>
<div class="border-t border-gray-700 mt-12 pt-8 text-center text-gray-400">
<p>© 2023 CodeCraft Wizardry. All rights reserved.</p>
</div>
</div>
</footer>
<script>
feather.replace();
// Simple animation for blob elements
document.addEventListener('DOMContentLoaded', () => {
const blobs = document.querySelectorAll('.animate-blob');
blobs.forEach((blob, index) => {
blob.style.animationDelay = `${index * 1000}ms`;
});
});
</script>
</body>
</html>