File size: 16,105 Bytes
dc4b942
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8ed71dc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
<!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>