errah's picture
Build this project: https://bolt.new/~/sb1-jntqpl7c
e6731bf verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Code Canvas | Creative Development Playground</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
</head>
<body class="bg-gray-50 min-h-screen flex flex-col">
<custom-navbar></custom-navbar>
<main class="flex-grow container mx-auto px-4 py-8 md:py-12 lg:py-16">
<div class="max-w-4xl mx-auto">
<div class="text-center mb-12">
<h1 class="text-4xl md:text-5xl font-bold text-gray-800 mb-4">Code Canvas</h1>
<p class="text-xl text-gray-600 max-w-2xl mx-auto">Your creative development playground for building amazing web experiences</p>
</div>
<div class="bg-white rounded-xl shadow-lg overflow-hidden mb-12">
<div class="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 class="flex-grow"></div>
<button class="bg-gray-100 hover:bg-gray-200 text-gray-800 px-4 py-1 rounded-lg text-sm">
<i data-feather="copy" class="w-4 h-4 inline mr-1"></i> Copy
</button>
</div>
<div class="bg-gray-900 rounded-lg p-6">
<pre class="text-gray-100 font-mono text-sm overflow-x-auto">
<code>
// Welcome to Code Canvas
function createMagic() {
const ideas = [];
const creativity = Infinity;
return ideas.map(idea => {
return `<div class="awesome-project">
${idea + creativity}
</div>`;
});
}
</code>
</pre>
</div>
</div>
</div>
<div class="grid md:grid-cols-2 gap-8 mb-12">
<div class="bg-white rounded-xl shadow-lg p-6 hover:shadow-xl transition-shadow">
<div class="flex items-center mb-4">
<i data-feather="zap" class="w-6 h-6 text-blue-500 mr-2"></i>
<h3 class="text-xl font-semibold text-gray-800">Quick Start</h3>
</div>
<p class="text-gray-600 mb-4">Jump right in with our beginner-friendly templates and starter kits.</p>
<a href="#" class="text-blue-500 hover:text-blue-600 inline-flex items-center">
Get Started <i data-feather="arrow-right" class="w-4 h-4 ml-1"></i>
</a>
</div>
<div class="bg-white rounded-xl shadow-lg p-6 hover:shadow-xl transition-shadow">
<div class="flex items-center mb-4">
<i data-feather="book" class="w-6 h-6 text-green-500 mr-2"></i>
<h3 class="text-xl font-semibold text-gray-800">Learn</h3>
</div>
<p class="text-gray-600 mb-4">Explore our library of tutorials and guides to level up your skills.</p>
<a href="#" class="text-green-500 hover:text-green-600 inline-flex items-center">
Learn More <i data-feather="arrow-right" class="w-4 h-4 ml-1"></i>
</a>
</div>
</div>
</div>
</main>
<custom-footer></custom-footer>
<script>feather.replace();</script>
<script src="script.js"></script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>