Build-IT_AI / templates.html
Urbanzulu's picture
lets finish AND DEPLOY MY APP
2d60dbf verified
Raw
History Blame
17.5 kB
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Templates | CodeForge-AI</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<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>
tailwind.config = {
darkMode: 'class',
theme: {
extend: {
colors: {
primary: '#ef4444',
secondary: '#6b7280'
}
}
}
}
</script>
</head>
<body class="bg-gray-900 text-white min-h-screen overflow-x-hidden">
<!-- Navigation -->
<nav class="bg-gray-800 border-b border-red-500/20 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 items-center h-16">
<div class="flex items-center space-x-4">
<div class="flex items-center space-x-2">
<a href="index.html" class="flex items-center space-x-2">
<div class="w-8 h-8 bg-red-500 rounded-lg flex items-center justify-center">
<i data-feather="code" class="w-4 h-4"></i>
</div>
<span class="text-xl font-bold text-white">CodeForge-AI</span>
</a>
</div>
<div class="hidden md:flex space-x-6">
<a href="workspaces.html" class="text-gray-300 hover:text-white transition-colors">Workspaces</a>
<a href="templates.html" class="text-red-400 hover:text-red-300 transition-colors">Templates</a>
<a href="deployments.html" class="text-gray-300 hover:text-white transition-colors">Deployments</a>
<a href="documentation.html" class="text-gray-300 hover:text-white transition-colors">Documentation</a>
<a href="admin-login.html" class="text-gray-300 hover:text-white transition-colors">Admin</a>
</div>
</div>
<div class="flex items-center space-x-4">
<a href="login.html" class="bg-gray-700 hover:bg-gray-600 px-4 py-2 rounded-lg text-white font-medium transition-colors">
Sign In
</a>
<a href="register.html" class="bg-red-500 hover:bg-red-600 px-4 py-2 rounded-lg text-white font-medium transition-colors">
Sign Up
</a>
</div>
</div>
</div>
</nav>
<!-- Templates Header -->
<div class="bg-gradient-to-br from-gray-800 to-gray-900 py-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center">
<h1 class="text-4xl md:text-6xl font-bold mb-6 bg-gradient-to-r from-red-400 to-red-600 bg-clip-text text-transparent">
Project Templates
</h1>
<p class="text-xl text-gray-300 mb-8 max-w-3xl mx-auto">
Kickstart your development with pre-configured templates for popular frameworks and technologies.
</p>
<div class="flex flex-col sm:flex-row gap-4 justify-center">
<input
type="text"
placeholder="Search templates..."
class="px-6 py-3 bg-gray-700 border border-gray-600 rounded-xl text-white placeholder-gray-400 focus:outline-none focus:ring-2 focus:ring-red-500 focus:border-transparent transition-colors"
>
<div class="flex gap-2">
<select class="px-4 py-3 bg-gray-700 border border-gray-600 rounded-xl text-white focus:outline-none focus:ring-2 focus:ring-red-500 focus:border-transparent">
<option>All Categories</option>
<option>Web Development</option>
<option>Mobile</option>
<option>Data Science</option>
<option>Machine Learning</option>
</select>
<select class="px-4 py-3 bg-gray-700 border border-gray-600 rounded-xl text-white focus:outline-none focus:ring-2 focus:ring-red-500 focus:border-transparent">
<option>All Languages</option>
<option>JavaScript</option>
<option>Python</option>
<option>Go</option>
<option>Rust</option>
<option>Java</option>
</select>
</div>
</div>
</div>
</div>
</div>
<!-- Templates Grid -->
<div class="py-16 bg-gray-900">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Template 1 -->
<div class="bg-gray-800 rounded-2xl p-6 border border-red-500/20 hover:border-red-500/40 transition-all group">
<div class="w-12 h-12 bg-red-500 rounded-xl flex items-center justify-center mb-4 group-hover:scale-110 transition-transform">
<i data-feather="react" class="w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold text-white mb-2">React + Node.js</h3>
<p class="text-gray-400 text-sm mb-4">Full-stack JavaScript application with React frontend and Node.js backend</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-red-500/20 text-red-400 px-2 py-1 rounded-full text-xs">React</span>
<span class="bg-blue-500/20 text-blue-400 px-2 py-1 rounded-full text-xs">Node.js</span>
<span class="bg-green-500/20 text-green-400 px-2 py-1 rounded-full text-xs">MongoDB</span>
</div>
<button class="w-full bg-red-500 hover:bg-red-600 text-white py-2 rounded-xl font-semibold transition-colors">
Use Template
</button>
</div>
<!-- Template 2 -->
<div class="bg-gray-800 rounded-2xl p-6 border border-red-500/20 hover:border-red-500/40 transition-all group">
<div class="w-12 h-12 bg-blue-500 rounded-xl flex items-center justify-center mb-4 group-hover:scale-110 transition-transform">
<i data-feather="database" class="w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold text-white mb-2">Data Science</h3>
<p class="text-gray-400 text-sm mb-4">Python data analysis environment with Jupyter, Pandas, and Scikit-learn</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-yellow-500/20 text-yellow-400 px-2 py-1 rounded-full text-xs">Python</span>
<span class="bg-orange-500/20 text-orange-400 px-2 py-1 rounded-full text-xs">Jupyter</span>
<span class="bg-purple-500/20 text-purple-400 px-2 py-1 rounded-full text-xs">Pandas</span>
</div>
<button class="w-full bg-red-500 hover:bg-red-600 text-white py-2 rounded-xl font-semibold transition-colors">
Use Template
</button>
</div>
<!-- Template 3 -->
<div class="bg-gray-800 rounded-2xl p-6 border border-red-500/20 hover:border-red-500/40 transition-all group">
<div class="w-12 h-12 bg-green-500 rounded-xl flex items-center justify-center mb-4 group-hover:scale-110 transition-transform">
<i data-feather="smartphone" class="w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold text-white mb-2">React Native</h3>
<p class="text-gray-400 text-sm mb-4">Cross-platform mobile app development with React Native and Firebase</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-blue-500/20 text-blue-400 px-2 py-1 rounded-full text-xs">React Native</span>
<span class="bg-orange-500/20 text-orange-400 px-2 py-1 rounded-full text-xs">Firebase</span>
<span class="bg-red-500/20 text-red-400 px-2 py-1 rounded-full text-xs">Expo</span>
</div>
<button class="w-full bg-red-500 hover:bg-red-600 text-white py-2 rounded-xl font-semibold transition-colors">
Use Template
</button>
</div>
<!-- Template 4 -->
<div class="bg-gray-800 rounded-2xl p-6 border border-red-500/20 hover:border-red-500/40 transition-all group">
<div class="w-12 h-12 bg-purple-500 rounded-xl flex items-center justify-center mb-4 group-hover:scale-110 transition-transform">
<i data-feather="server" class="w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold text-white mb-2">Go API Server</h3>
<p class="text-gray-400 text-sm mb-4">High-performance REST API server with Go and PostgreSQL</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-blue-500/20 text-blue-400 px-2 py-1 rounded-full text-xs">Go</span>
<span class="bg-green-500/20 text-green-400 px-2 py-1 rounded-full text-xs">PostgreSQL</span>
<span class="bg-purple-500/20 text-purple-400 px-2 py-1 rounded-full text-xs">Gin</span>
</div>
<button class="w-full bg-red-500 hover:bg-red-600 text-white py-2 rounded-xl font-semibold transition-colors">
Use Template
</button>
</div>
<!-- Template 5 -->
<div class="bg-gray-800 rounded-2xl p-6 border border-red-500/20 hover:border-red-500/40 transition-all group">
<div class="w-12 h-12 bg-orange-500 rounded-xl flex items-center justify-center mb-4 group-hover:scale-110 transition-transform">
<i data-feather="cpu" class="w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold text-white mb-2">Machine Learning</h3>
<p class="text-gray-400 text-sm mb-4">Machine learning pipeline with TensorFlow and scikit-learn</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-orange-500/20 text-orange-400 px-2 py-1 rounded-full text-xs">TensorFlow</span>
<span class="bg-purple-500/20 text-purple-400 px-2 py-1 rounded-full text-xs">Scikit-learn</span>
<span class="bg-yellow-500/20 text-yellow-400 px-2 py-1 rounded-full text-xs">NumPy</span>
</div>
<button class="w-full bg-red-500 hover:bg-red-600 text-white py-2 rounded-xl font-semibold transition-colors">
Use Template
</button>
</div>
<!-- Template 6 -->
<div class="bg-gray-800 rounded-2xl p-6 border border-red-500/20 hover:border-red-500/40 transition-all group">
<div class="w-12 h-12 bg-red-500 rounded-xl flex items-center justify-center mb-4 group-hover:scale-110 transition-transform">
<i data-feather="box" class="w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold text-white mb-2">Static Site</h3>
<p class="text-gray-400 text-sm mb-4">Modern static site with Next.js and Tailwind CSS</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-black/20 text-gray-400 px-2 py-1 rounded-full text-xs">Next.js</span>
<span class="bg-blue-500/20 text-blue-400 px-2 py-1 rounded-full text-xs">Tailwind</span>
<span class="bg-green-500/20 text-green-400 px-2 py-1 rounded-full text-xs">TypeScript</span>
</div>
<button class="w-full bg-red-500 hover:bg-red-600 text-white py-2 rounded-xl font-semibold transition-colors">
Use Template
</button>
</div>
</div>
</div>
</div>
<!-- Call to Action -->
<div class="py-16 bg-gray-800/50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<h2 class="text-3xl font-bold text-white mb-4">Can't find what you're looking for?</h2>
<p class="text-gray-300 text-lg mb-8 max-w-2xl mx-auto">
Request a custom template or build your own from scratch with our intuitive workspace creator.
</p>
<div class="flex flex-col sm:flex-row gap-4 justify-center">
<button class="bg-red-500 hover:bg-red-600 px-8 py-4 rounded-xl text-white font-semibold text-lg transition-all transform hover:scale-105">
Request Template
</button>
<button class="border border-red-500 text-red-400 hover:bg-red-500/10 px-8 py-4 rounded-xl font-semibold text-lg transition-all">
Build Custom
</button>
</div>
</div>
</div>
<!-- Footer -->
<footer class="bg-gray-800 border-t border-gray-700 py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid md:grid-cols-4 gap-8">
<div>
<div class="flex items-center space-x-2 mb-4">
<div class="w-8 h-8 bg-red-500 rounded-lg flex items-center justify-center">
<i data-feather="code" class="w-4 h-4"></i>
</div>
<span class="text-xl font-bold text-white">CodeForge-AI</span>
</div>
<p class="text-gray-400 text-sm">
The autonomous development platform for modern developers.
</p>
</div>
<div>
<h4 class="text-white font-semibold mb-4">Product</h4>
<ul class="space-y-2 text-sm text-gray-400">
<li><a href="features.html" class="hover:text-red-400 transition-colors">Features</a></li>
<li><a href="pricing.html" class="hover:text-red-400 transition-colors">Pricing</a></li>
<li><a href="documentation.html" class="hover:text-red-400 transition-colors">Documentation</a></li>
<li><a href="api.html" class="hover:text-red-400 transition-colors">API</a></li>
</ul>
</div>
<div>
<h4 class="text-white font-semibold mb-4">Company</h4>
<ul class="space-y-2 text-sm text-gray-400">
<li><a href="about.html" class="hover:text-red-400 transition-colors">About</a></li>
<li><a href="blog.html" class="hover:text-red-400 transition-colors">Blog</a></li>
<li><a href="careers.html" class="hover:text-red-400 transition-colors">Careers</a></li>
<li><a href="contact.html" class="hover:text-red-400 transition-colors">Contact</a></li>
</ul>
</div>
<div>
<h4 class="text-white font-semibold mb-4">Connect</h4>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-red-400 transition-colors">
<i data-feather="github" class="w-5 h-5"></i>
</a>
<a href="#" class="text-gray-400 hover:text-red-400 transition-colors">
<i data-feather="twitter" class="w-5 h-5"></i>
</a>
<a href="#" class="text-gray-400 hover:text-red-400 transition-colors">
<i data-feather="linkedin" class="w-5 h-5"></i>
</a>
<a href="#" class="text-gray-400 hover:text-red-400 transition-colors">
<i data-feather="discord" class="w-5 h-5"></i>
</a>
</div>
</div>
</div>
<div class="border-t border-gray-700 mt-8 pt-8 text-center text-sm text-gray-400">
<p>&copy; 2024 CodeForge-AI. All rights reserved. Built with security and performance in mind.</p>
</div>
</div>
</footer>
<script>
// Initialize Feather Icons
feather.replace();
</script>
</body>
</html>