bc-game / index.html
likhonsheikhdev's picture
- Follow Up Deployment
652c1fe verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>bolt.new - Create stunning apps & websites by chatting with AI</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.gradient-text {
background: linear-gradient(90deg, #3b82f6, #8b5cf6);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.card-hover {
transition: all 0.3s ease;
}
.card-hover: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);
}
.search-input:focus {
outline: none;
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}
</style>
</head>
<body class="bg-gray-50 font-sans antialiased">
<!-- Header -->
<header class="bg-white shadow-sm">
<div class="container mx-auto px-4 py-4 flex justify-between items-center">
<div class="flex items-center space-x-8">
<a href="/" class="text-2xl font-bold gradient-text">bolt.new</a>
<nav class="hidden md:flex space-x-6">
<a href="https://discord.com/invite/stackblitz" class="text-gray-600 hover:text-indigo-600 transition">Community</a>
<a href="https://stackblitz.com/enterprise-contact" class="text-gray-600 hover:text-indigo-600 transition">Enterprise</a>
<div class="relative group">
<button class="text-gray-600 hover:text-indigo-600 transition flex items-center">
Resources
<i class="fas fa-chevron-down ml-1 text-xs"></i>
</button>
<div class="absolute left-0 mt-2 w-48 bg-white rounded-md shadow-lg py-1 z-10 opacity-0 invisible group-hover:opacity-100 group-hover:visible transition-all duration-200">
<a href="https://support.bolt.new/" class="block px-4 py-2 text-gray-700 hover:bg-indigo-50">Docs & Help Center</a>
<a href="https://bolt.new/blog" class="block px-4 py-2 text-gray-700 hover:bg-indigo-50">Blog</a>
<a href="https://bolt.new/gallery" class="block px-4 py-2 text-gray-700 hover:bg-indigo-50">Bolt Gallery</a>
<a href="https://stackblitz.com/careers" class="block px-4 py-2 text-gray-700 hover:bg-indigo-50">Careers</a>
</div>
</div>
</nav>
</div>
<div class="flex items-center space-x-4">
<a href="https://bolt.new/pricing" class="hidden md:block text-gray-600 hover:text-indigo-600 transition">Pricing</a>
<div class="flex space-x-2">
<a href="#" class="p-2 text-gray-500 hover:text-indigo-600 transition">
<i class="fab fa-discord"></i>
</a>
<a href="https://www.linkedin.com/company/stackblitz" class="p-2 text-gray-500 hover:text-indigo-600 transition">
<i class="fab fa-linkedin"></i>
</a>
<a href="https://x.com/boltdotnew" class="p-2 text-gray-500 hover:text-indigo-600 transition">
<i class="fab fa-twitter"></i>
</a>
<a href="https://www.reddit.com/r/boltnewbuilders/" class="p-2 text-gray-500 hover:text-indigo-600 transition">
<i class="fab fa-reddit"></i>
</a>
</div>
<div class="hidden md:flex space-x-3">
<a href="#" class="px-4 py-2 text-gray-600 hover:text-indigo-600 transition">Sign In</a>
<a href="#" class="px-4 py-2 bg-indigo-600 text-white rounded-md hover:bg-indigo-700 transition">Get Started</a>
</div>
<button class="md:hidden text-gray-600">
<i class="fas fa-bars text-xl"></i>
</button>
</div>
</div>
</header>
<!-- Hero Section -->
<section class="py-16 md:py-24">
<div class="container mx-auto px-4 text-center">
<h1 class="text-4xl md:text-6xl font-bold text-gray-900 mb-6">
What do you want to build?
</h1>
<p class="text-xl md:text-2xl text-gray-600 mb-10 max-w-3xl mx-auto">
Create stunning apps & websites by chatting with AI.
</p>
<div class="max-w-2xl mx-auto relative mb-12">
<div class="relative">
<input type="text" placeholder="Describe what you want to build..."
class="w-full px-6 py-4 rounded-full border border-gray-300 focus:border-indigo-500 search-input shadow-sm text-lg">
<div class="absolute right-3 top-1/2 transform -translate-y-1/2 flex space-x-2">
<button class="p-2 text-gray-500 hover:text-indigo-600">
<i class="fas fa-times"></i>
</button>
<button class="px-4 py-2 bg-indigo-600 text-white rounded-full hover:bg-indigo-700 transition">
Update
</button>
</div>
</div>
<div class="mt-4 text-sm text-gray-500">
or import from
<a href="#" class="text-indigo-600 hover:underline ml-1">Figma</a>
<span class="mx-1"></span>
<a href="#" class="text-indigo-600 hover:underline">GitHub</a>
</div>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6 max-w-5xl mx-auto">
<a href="https://bolt.new/~/financial-app" class="bg-white p-6 rounded-xl shadow-md card-hover">
<div class="w-12 h-12 bg-indigo-100 rounded-lg flex items-center justify-center mb-4">
<i class="fas fa-wallet text-indigo-600 text-xl"></i>
</div>
<h3 class="text-lg font-semibold text-gray-900 mb-2">Create a financial app</h3>
<p class="text-gray-500">Build banking, investment or payment apps with AI assistance</p>
</a>
<a href="https://bolt.new/~/directory-website" class="bg-white p-6 rounded-xl shadow-md card-hover">
<div class="w-12 h-12 bg-purple-100 rounded-lg flex items-center justify-center mb-4">
<i class="fas fa-list-alt text-purple-600 text-xl"></i>
</div>
<h3 class="text-lg font-semibold text-gray-900 mb-2">Design a directory website</h3>
<p class="text-gray-500">Create business listings, catalogs or resource directories</p>
</a>
<a href="https://bolt.new/~/app-project-management" class="bg-white p-6 rounded-xl shadow-md card-hover">
<div class="w-12 h-12 bg-blue-100 rounded-lg flex items-center justify-center mb-4">
<i class="fas fa-tasks text-blue-600 text-xl"></i>
</div>
<h3 class="text-lg font-semibold text-gray-900 mb-2">Build a project management app</h3>
<p class="text-gray-500">Develop tools for teams to collaborate and track work</p>
</a>
<a href="https://bolt.new/~/payment-app" class="bg-white p-6 rounded-xl shadow-md card-hover">
<div class="w-12 h-12 bg-green-100 rounded-lg flex items-center justify-center mb-4">
<i class="fas fa-rocket text-green-600 text-xl"></i>
</div>
<h3 class="text-lg font-semibold text-gray-900 mb-2">Make a landing page</h3>
<p class="text-gray-500">Generate high-converting pages for your product or service</p>
</a>
<a href="https://bolt.new/~/personal-crm" class="bg-white p-6 rounded-xl shadow-md card-hover">
<div class="w-12 h-12 bg-red-100 rounded-lg flex items-center justify-center mb-4">
<i class="fas fa-users text-red-600 text-xl"></i>
</div>
<h3 class="text-lg font-semibold text-gray-900 mb-2">Generate a CRM</h3>
<p class="text-gray-500">Create customer relationship management systems</p>
</a>
<div class="bg-white p-6 rounded-xl shadow-md card-hover">
<div class="w-12 h-12 bg-yellow-100 rounded-lg flex items-center justify-center mb-4">
<i class="fas fa-mobile-alt text-yellow-600 text-xl"></i>
</div>
<h3 class="text-lg font-semibold text-gray-900 mb-2">Build a mobile app</h3>
<p class="text-gray-500">Develop iOS and Android applications with AI guidance</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<h3 class="text-xl font-bold gradient-text mb-4">bolt.new</h3>
<p class="text-gray-400">Create stunning apps & websites by chatting with AI.</p>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Product</h4>
<ul class="space-y-2">
<li><a href="https://bolt.new/pricing" class="text-gray-400 hover:text-white transition">Pricing</a></li>
<li><a href="https://bolt.new/blog" class="text-gray-400 hover:text-white transition">Blog</a></li>
<li><a href="https://support.bolt.new/" class="text-gray-400 hover:text-white transition">Documentation</a></li>
<li><a href="https://support.bolt.new/" class="text-gray-400 hover:text-white transition">Help Center</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Company</h4>
<ul class="space-y-2">
<li><a href="https://stackblitz.com/careers" class="text-gray-400 hover:text-white transition">Careers</a></li>
<li><a href="https://stackblitz.com/terms-of-service" class="text-gray-400 hover:text-white transition">Terms</a></li>
<li><a href="https://stackblitz.com/privacy-policy" class="text-gray-400 hover:text-white transition">Privacy</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Connect</h4>
<div class="flex space-x-4 mb-4">
<a href="https://discord.com/invite/stackblitz" class="text-gray-400 hover:text-white transition text-xl">
<i class="fab fa-discord"></i>
</a>
<a href="https://www.linkedin.com/company/stackblitz" class="text-gray-400 hover:text-white transition text-xl">
<i class="fab fa-linkedin"></i>
</a>
<a href="https://x.com/boltdotnew" class="text-gray-400 hover:text-white transition text-xl">
<i class="fab fa-twitter"></i>
</a>
<a href="https://www.youtube.com/@BoltDotNew" class="text-gray-400 hover:text-white transition text-xl">
<i class="fab fa-youtube"></i>
</a>
<a href="https://www.instagram.com/boltdotnew/" class="text-gray-400 hover:text-white transition text-xl">
<i class="fab fa-instagram"></i>
</a>
<a href="https://www.reddit.com/r/boltnewbuilders/" class="text-gray-400 hover:text-white transition text-xl">
<i class="fab fa-reddit"></i>
</a>
</div>
<p class="text-gray-400">© 2023 bolt.new. All rights reserved.</p>
</div>
</div>
</div>
</footer>
<script>
// Mobile menu toggle functionality would go here
document.addEventListener('DOMContentLoaded', function() {
// You could add mobile menu toggle functionality here
console.log('Website loaded');
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=likhonsheikhdev/bc-game" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>