CoolFace
Apppublic

kingdelexx/codewizard-s-digital-grimoire

sourceHugging Faceupdated 11mo agoView on Hugging Face
0likes
index.html226 linesDownload Raw Back to root
1<!DOCTYPE html>2<html lang="en" class="dark">3<head>4    <meta charset="UTF-8">5    <meta name="viewport" content="width=device-width, initial-scale=1.0">6    <title>DevSphere | Fullstack Wizard</title>7    <link rel="stylesheet" href="style.css">8    <script src="https://cdn.tailwindcss.com"></script>9    <script src="https://unpkg.com/feather-icons"></script>10    <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>11    <script>12      tailwind.config = {13        darkMode: 'class',14        theme: {15          extend: {16            colors: {17              primary: '#6d28d9',18              secondary: '#10b981',19            }20          }21        }22      }23    </script>24</head>25<body class="bg-gray-900 text-gray-100 min-h-screen">26    <custom-navbar></custom-navbar>27    28    <main class="container mx-auto px-4 py-12">29      <!-- Hero Section -->30      <section class="flex flex-col md:flex-row items-center justify-between gap-12 mb-24">31        <div class="md:w-1/2">32          <h1 class="text-4xl md:text-6xl font-bold mb-6">Crafting Digital <span class="text-primary">Magic</span></h1>33          <p class="text-xl text-gray-400 mb-8">I'm a fullstack wizard conjuring powerful web solutions with Python, Django, React, and JavaScript.</p>34          <div class="flex gap-4">35            <a href="#projects" class="bg-primary hover:bg-purple-700 text-white px-6 py-3 rounded-lg transition">View My Work</a>36            <a href="#contact" class="border border-gray-700 hover:bg-gray-800 text-white px-6 py-3 rounded-lg transition">Contact Me</a>37          </div>38        </div>39        <div class="md:w-1/2 relative">40          <div class="bg-gray-800 rounded-2xl p-1 shadow-2xl">41            <div class="bg-gray-900 rounded-xl overflow-hidden">42              <img src="http://static.photos/technology/1024x576/42" alt="Code illustration" class="w-full h-auto rounded-lg">43            </div>44            <div class="absolute -bottom-6 -right-6 bg-primary p-4 rounded-xl shadow-lg">45              <i data-feather="code" class="w-8 h-8"></i>46            </div>47          </div>48        </div>49      </section>50 51      <!-- Skills Section -->52      <section class="mb-24">53        <h2 class="text-3xl font-bold mb-12 text-center">My <span class="text-primary">Spellbook</span></h2>54        <div class="grid grid-cols-2 md:grid-cols-4 gap-6">55          <div class="bg-gray-800 p-6 rounded-xl hover:bg-gray-700 transition cursor-default group">56            <div class="bg-primary bg-opacity-10 p-3 rounded-lg w-max mb-4 group-hover:bg-opacity-20 transition">57              <i data-feather="cpu" class="text-primary w-8 h-8"></i>58            </div>59            <h3 class="text-xl font-semibold mb-2">Backend</h3>60            <p class="text-gray-400">Python, Django, Flask, REST APIs, Databases</p>61          </div>62          <div class="bg-gray-800 p-6 rounded-xl hover:bg-gray-700 transition cursor-default group">63            <div class="bg-primary bg-opacity-10 p-3 rounded-lg w-max mb-4 group-hover:bg-opacity-20 transition">64              <i data-feather="layout" class="text-primary w-8 h-8"></i>65            </div>66            <h3 class="text-xl font-semibold mb-2">Frontend</h3>67            <p class="text-gray-400">React, JavaScript, HTML5, CSS3, Tailwind</p>68          </div>69          <div class="bg-gray-800 p-6 rounded-xl hover:bg-gray-700 transition cursor-default group">70            <div class="bg-primary bg-opacity-10 p-3 rounded-lg w-max mb-4 group-hover:bg-opacity-20 transition">71              <i data-feather="database" class="text-primary w-8 h-8"></i>72            </div>73            <h3 class="text-xl font-semibold mb-2">DevOps</h3>74            <p class="text-gray-400">Docker, AWS, CI/CD, Linux, Deployment</p>75          </div>76          <div class="bg-gray-800 p-6 rounded-xl hover:bg-gray-700 transition cursor-default group">77            <div class="bg-primary bg-opacity-10 p-3 rounded-lg w-max mb-4 group-hover:bg-opacity-20 transition">78              <i data-feather="smartphone" class="text-primary w-8 h-8"></i>79            </div>80            <h3 class="text-xl font-semibold mb-2">Mobile</h3>81            <p class="text-gray-400">React Native, Progressive Web Apps</p>82          </div>83        </div>84      </section>85 86      <!-- Projects Section -->87      <section id="projects" class="mb-24">88        <h2 class="text-3xl font-bold mb-12 text-center">Recent <span class="text-primary">Incantations</span></h2>89        <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">90          <div class="bg-gray-800 rounded-xl overflow-hidden hover:shadow-lg transition">91            <div class="h-48 bg-gray-900 overflow-hidden">92              <img src="http://static.photos/technology/640x360/1" alt="Project 1" class="w-full h-full object-cover">93            </div>94            <div class="p-6">95              <div class="flex justify-between items-start mb-4">96                <h3 class="text-xl font-bold">E-Commerce Platform</h3>97                <div class="flex gap-2">98                  <span class="bg-gray-700 text-xs px-2 py-1 rounded">Django</span>99                  <span class="bg-gray-700 text-xs px-2 py-1 rounded">React</span>100                </div>101              </div>102              <p class="text-gray-400 mb-4">Full-featured e-commerce solution with payment integration and admin dashboard.</p>103              <a href="projects/ecommerce.html" class="text-primary hover:text-purple-400 transition flex items-center gap-1">104                View Details <i data-feather="arrow-right" class="w-4 h-4"></i>105              </a>106            </div>107          </div>108          109          <div class="bg-gray-800 rounded-xl overflow-hidden hover:shadow-lg transition">110            <div class="h-48 bg-gray-900 overflow-hidden">111              <img src="http://static.photos/technology/640x360/2" alt="Project 2" class="w-full h-full object-cover">112            </div>113            <div class="p-6">114              <div class="flex justify-between items-start mb-4">115                <h3 class="text-xl font-bold">Task Management App</h3>116                <div class="flex gap-2">117                  <span class="bg-gray-700 text-xs px-2 py-1 rounded">React</span>118                  <span class="bg-gray-700 text-xs px-2 py-1 rounded">Node.js</span>119                </div>120              </div>121              <p class="text-gray-400 mb-4">Real-time collaborative task management application with drag-and-drop interface.</p>122              <a href="projects/taskapp.html" class="text-primary hover:text-purple-400 transition flex items-center gap-1">123                View Details <i data-feather="arrow-right" class="w-4 h-4"></i>124              </a>125            </div>126          </div>127          128          <div class="bg-gray-800 rounded-xl overflow-hidden hover:shadow-lg transition">129            <div class="h-48 bg-gray-900 overflow-hidden">130              <img src="http://static.photos/technology/640x360/3" alt="Project 3" class="w-full h-full object-cover">131            </div>132            <div class="p-6">133              <div class="flex justify-between items-start mb-4">134                <h3 class="text-xl font-bold">AI Content Analyzer</h3>135                <div class="flex gap-2">136                  <span class="bg-gray-700 text-xs px-2 py-1 rounded">Python</span>137                  <span class="bg-gray-700 text-xs px-2 py-1 rounded">Flask</span>138                </div>139              </div>140              <p class="text-gray-400 mb-4">Machine learning powered content analysis tool with sentiment detection.</p>141              <a href="projects/ai-analyzer.html" class="text-primary hover:text-purple-400 transition flex items-center gap-1">142                View Details <i data-feather="arrow-right" class="w-4 h-4"></i>143              </a>144            </div>145          </div>146        </div>147        <div class="text-center mt-12">148          <a href="projects.html" class="inline-flex items-center gap-2 border border-gray-700 hover:bg-gray-800 px-6 py-3 rounded-lg transition">149            View All Projects <i data-feather="arrow-right" class="w-5 h-5"></i>150          </a>151        </div>152      </section>153 154      <!-- Contact Section -->155      <section id="contact" class="bg-gray-800 rounded-2xl p-8 md:p-12 mb-24">156        <div class="max-w-4xl mx-auto">157          <h2 class="text-3xl font-bold mb-2 text-center">Ready to <span class="text-primary">Collaborate?</span></h2>158          <p class="text-gray-400 text-center mb-12 max-w-2xl mx-auto">Have a project in mind? Let's discuss how I can help bring your vision to life.</p>159          160          <div class="flex flex-col md:flex-row gap-12">161            <div class="md:w-1/2">162              <form class="space-y-6">163                <div>164                  <label for="name" class="block mb-2 text-sm font-medium">Your Name</label>165                  <input type="text" id="name" class="bg-gray-700 border border-gray-600 text-white text-sm rounded-lg focus:ring-primary focus:border-primary block w-full p-3" required>166                </div>167                <div>168                  <label for="email" class="block mb-2 text-sm font-medium">Your Email</label>169                  <input type="email" id="email" class="bg-gray-700 border border-gray-600 text-white text-sm rounded-lg focus:ring-primary focus:border-primary block w-full p-3" required>170                </div>171                <div>172                  <label for="message" class="block mb-2 text-sm font-medium">Your Message</label>173                  <textarea id="message" rows="4" class="bg-gray-700 border border-gray-600 text-white text-sm rounded-lg focus:ring-primary focus:border-primary block w-full p-3"></textarea>174                </div>175                <button type="submit" class="bg-primary hover:bg-purple-700 text-white font-medium rounded-lg text-sm w-full px-5 py-3 text-center transition flex items-center justify-center gap-2">176                  Send Message <i data-feather="send" class="w-4 h-4"></i>177                </button>178              </form>179            </div>180            <div class="md:w-1/2">181              <div class="bg-gray-900 p-6 rounded-xl h-full">182                <h3 class="text-xl font-semibold mb-6">Find Me Elsewhere</h3>183                <div class="space-y-4">184                  <a href="#" class="flex items-center gap-3 text-gray-400 hover:text-white transition">185                    <div class="bg-primary bg-opacity-10 p-2 rounded-lg">186                      <i data-feather="github" class="text-primary"></i>187                    </div>188                    <span>github.com/devwizard</span>189                  </a>190                  <a href="#" class="flex items-center gap-3 text-gray-400 hover:text-white transition">191                    <div class="bg-primary bg-opacity-10 p-2 rounded-lg">192                      <i data-feather="linkedin" class="text-primary"></i>193                    </div>194                    <span>linkedin.com/in/devwizard</span>195                  </a>196                  <a href="#" class="flex items-center gap-3 text-gray-400 hover:text-white transition">197                    <div class="bg-primary bg-opacity-10 p-2 rounded-lg">198                      <i data-feather="twitter" class="text-primary"></i>199                    </div>200                    <span>twitter.com/devwizard</span>201                  </a>202                  <a href="#" class="flex items-center gap-3 text-gray-400 hover:text-white transition">203                    <div class="bg-primary bg-opacity-10 p-2 rounded-lg">204                      <i data-feather="mail" class="text-primary"></i>205                    </div>206                    <span>hello@devwizard.io</span>207                  </a>208                </div>209              </div>210            </div>211          </div>212        </div>213      </section>214    </main>215 216    <custom-footer></custom-footer>217 218    <script src="components/navbar.js"></script>219    <script src="components/footer.js"></script>220    <script src="script.js"></script>221    <script>222      feather.replace();223    </script>224<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>225</body>226</html>