DukeFastcruise's picture
What languages do you code in and do you only create websites?
aa6ddc7 verified
Raw
History Blame Contribute Delete
8.52 kB
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CodeCraft | Polyglot Playground</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: {
100: '#f0f9ff',
500: '#0ea5e9',
900: '#082f49',
},
secondary: {
100: '#f5f3ff',
500: '#8b5cf6',
900: '#4c1d95',
}
}
}
}
}
</script>
</head>
<body class="bg-gray-50 text-gray-900 font-sans antialiased">
<header-component></header-component>
<main class="container mx-auto px-4 py-12">
<section class="mb-20">
<div class="text-center max-w-3xl mx-auto">
<h1 class="text-4xl md:text-5xl font-bold mb-6 text-primary-900">CodeCraft Polyglot Playground</h1>
<p class="text-xl text-gray-600 mb-8">Discover the languages I work with and the digital experiences I create</p>
<div class="flex justify-center gap-4">
<a href="#languages" class="px-6 py-3 bg-primary-500 text-white rounded-lg hover:bg-primary-600 transition duration-300 font-medium">My Languages</a>
<a href="#projects" class="px-6 py-3 bg-secondary-500 text-white rounded-lg hover:bg-secondary-600 transition duration-300 font-medium">My Projects</a>
</div>
</div>
</section>
<section id="languages" class="mb-20">
<h2 class="text-3xl font-bold mb-12 text-center text-primary-900">Programming Languages & Technologies</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition duration-300">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-primary-100 flex items-center justify-center mr-4">
<i data-feather="code" class="text-primary-500"></i>
</div>
<h3 class="text-xl font-semibold">Frontend</h3>
</div>
<p class="text-gray-600 mb-4">HTML5, CSS3, JavaScript (ES6+), TypeScript, React, Vue.js, Angular</p>
<div class="flex flex-wrap gap-2">
<span class="px-3 py-1 bg-primary-100 text-primary-800 rounded-full text-sm">Responsive</span>
<span class="px-3 py-1 bg-primary-100 text-primary-800 rounded-full text-sm">SPA</span>
<span class="px-3 py-1 bg-primary-100 text-primary-800 rounded-full text-sm">PWA</span>
</div>
</div>
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition duration-300">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-secondary-100 flex items-center justify-center mr-4">
<i data-feather="server" class="text-secondary-500"></i>
</div>
<h3 class="text-xl font-semibold">Backend</h3>
</div>
<p class="text-gray-600 mb-4">Node.js, Python, Ruby, PHP, Java, C#, Go, Rust, SQL, NoSQL</p>
<div class="flex flex-wrap gap-2">
<span class="px-3 py-1 bg-secondary-100 text-secondary-800 rounded-full text-sm">API</span>
<span class="px-3 py-1 bg-secondary-100 text-secondary-800 rounded-full text-sm">Microservices</span>
<span class="px-3 py-1 bg-secondary-100 text-secondary-800 rounded-full text-sm">Serverless</span>
</div>
</div>
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition duration-300">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-primary-100 flex items-center justify-center mr-4">
<i data-feather="smartphone" class="text-primary-500"></i>
</div>
<h3 class="text-xl font-semibold">Mobile</h3>
</div>
<p class="text-gray-600 mb-4">React Native, Flutter, Swift, Kotlin, Ionic, NativeScript</p>
<div class="flex flex-wrap gap-2">
<span class="px-3 py-1 bg-primary-100 text-primary-800 rounded-full text-sm">iOS</span>
<span class="px-3 py-1 bg-primary-100 text-primary-800 rounded-full text-sm">Android</span>
<span class="px-3 py-1 bg-primary-100 text-primary-800 rounded-full text-sm">Cross-platform</span>
</div>
</div>
</div>
</section>
<section id="projects" class="mb-20">
<h2 class="text-3xl font-bold mb-12 text-center text-primary-900">More Than Just Websites</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition duration-300">
<div class="h-48 bg-gradient-to-r from-primary-500 to-secondary-500 rounded-lg mb-4 flex items-center justify-center">
<i data-feather="globe" class="text-white w-16 h-16"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Web Applications</h3>
<p class="text-gray-600 mb-4">Interactive, dynamic web experiences with modern frameworks and best practices.</p>
<a href="#" class="text-primary-500 hover:text-primary-700 font-medium inline-flex items-center">
View examples
<i data-feather="arrow-right" class="w-4 h-4 ml-2"></i>
</a>
</div>
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition duration-300">
<div class="h-48 bg-gradient-to-r from-secondary-500 to-primary-500 rounded-lg mb-4 flex items-center justify-center">
<i data-feather="box" class="text-white w-16 h-16"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Software Solutions</h3>
<p class="text-gray-600 mb-4">Custom desktop applications, CLI tools, and system utilities for various platforms.</p>
<a href="#" class="text-primary-500 hover:text-primary-700 font-medium inline-flex items-center">
View examples
<i data-feather="arrow-right" class="w-4 h-4 ml-2"></i>
</a>
</div>
</div>
</section>
<section class="bg-gradient-to-r from-primary-500 to-secondary-500 rounded-2xl p-8 md:p-12 text-white">
<div class="max-w-3xl mx-auto text-center">
<h2 class="text-3xl font-bold mb-4">Ready to Build Something Amazing?</h2>
<p class="text-xl mb-8 opacity-90">Whether it's a website, mobile app, or custom software solution, I can help bring your vision to life.</p>
<a href="#" class="inline-block px-8 py-3 bg-white text-primary-500 rounded-lg hover:bg-gray-100 transition duration-300 font-medium">
Get in Touch
<i data-feather="mail" class="w-5 h-5 inline ml-2"></i>
</a>
</div>
</section>
</main>
<footer-component></footer-component>
<script src="components/header.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
<script>
feather.replace();
</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>