| | <!DOCTYPE html> |
| | <html lang="en"> |
| | <head> |
| | <meta charset="UTF-8"> |
| | <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| | <title>Smart IDE Feature Tips</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> |
| | @keyframes float { |
| | 0%, 100% { transform: translateY(0); } |
| | 50% { transform: translateY(-10px); } |
| | } |
| | .float-animation { |
| | animation: float 4s ease-in-out infinite; |
| | } |
| | .tip-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); |
| | } |
| | .gradient-text { |
| | background-clip: text; |
| | -webkit-background-clip: text; |
| | color: transparent; |
| | } |
| | </style> |
| | </head> |
| | <body class="bg-gray-50 min-h-screen py-12 px-4 sm:px-6 lg:px-8"> |
| | <div class="max-w-7xl mx-auto"> |
| | <h1 class="text-4xl font-bold text-center mb-12 text-gray-800">Smart IDE Key Features</h1> |
| | |
| | <div class="space-y-4 max-w-4xl mx-auto"> |
| | |
| | <div class="flex items-center bg-gradient-to-r from-blue-50 to-blue-100 rounded-lg p-3 shadow-sm hover:shadow-md transition-shadow duration-300"> |
| | <div class="flex-shrink-0 mr-3"> |
| | <div class="w-10 h-10 rounded-full bg-gradient-to-r from-blue-500 to-indigo-600 text-white flex items-center justify-center"> |
| | <span class="text-lg font-bold">1</span> |
| | </div> |
| | </div> |
| | <div> |
| | <h3 class="text-base font-semibold text-gray-800">一键生成项目骨架</h3> |
| | </div> |
| | </div> |
| |
|
| | |
| | <div class="flex items-center bg-gradient-to-r from-purple-50 to-purple-100 rounded-lg p-3 shadow-sm hover:shadow-md transition-shadow duration-300"> |
| | <div class="flex-shrink-0 mr-3"> |
| | <div class="w-10 h-10 rounded-full bg-gradient-to-r from-purple-500 to-pink-500 text-white flex items-center justify-center"> |
| | <span class="text-lg font-bold">2</span> |
| | </div> |
| | </div> |
| | <div> |
| | <h3 class="text-base font-semibold text-gray-800">智能补全与代码生成</h3> |
| | </div> |
| | </div> |
| |
|
| | |
| | <div class="flex items-center bg-gradient-to-r from-green-50 to-green-100 rounded-lg p-3 shadow-sm hover:shadow-md transition-shadow duration-300"> |
| | <div class="flex-shrink-0 mr-3"> |
| | <div class="w-10 h-10 rounded-full bg-gradient-to-r from-green-500 to-teal-500 text-white flex items-center justify-center"> |
| | <span class="text-lg font-bold">3</span> |
| | </div> |
| | </div> |
| | <div> |
| | <h3 class="text-base font-semibold text-gray-800">自然语言生成代码</h3> |
| | </div> |
| | </div> |
| |
|
| | |
| | <div class="flex items-center bg-gradient-to-r from-orange-50 to-orange-100 rounded-lg p-3 shadow-sm hover:shadow-md transition-shadow duration-300"> |
| | <div class="flex-shrink-0 mr-3"> |
| | <div class="w-10 h-10 rounded-full bg-gradient-to-r from-orange-500 to-red-500 text-white flex items-center justify-center"> |
| | <span class="text-lg font-bold">4</span> |
| | </div> |
| | </div> |
| | <div> |
| | <h3 class="text-base font-semibold text-gray-800">全流程 DevOps 工具</h3> |
| | </div> |
| | </div> |
| | </div> |
| | |
| | <div class="mt-16 text-center"> |
| | <h2 class="text-3xl font-bold mb-6 gradient-text bg-gradient-to-r from-indigo-500 via-purple-500 to-pink-500">Why Choose Our Smart IDE?</h2> |
| | <div class="max-w-3xl mx-auto bg-white rounded-xl shadow-md overflow-hidden p-6"> |
| | <p class="text-gray-700 mb-4">Our intelligent development environment revolutionizes coding by combining AI-powered assistance with comprehensive DevOps capabilities.</p> |
| | <div class="grid grid-cols-2 md:grid-cols-4 gap-4 mt-6"> |
| | <div class="flex flex-col items-center"> |
| | <div class="w-12 h-12 rounded-full bg-blue-100 flex items-center justify-center mb-2"> |
| | <i class="fas fa-clock text-blue-500"></i> |
| | </div> |
| | <span class="text-sm font-medium text-gray-700">80% Faster Setup</span> |
| | </div> |
| | <div class="flex flex-col items-center"> |
| | <div class="w-12 h-12 rounded-full bg-purple-100 flex items-center justify-center mb-2"> |
| | <i class="fas fa-code text-purple-500"></i> |
| | </div> |
| | <span class="text-sm font-medium text-gray-700">60% Less Code</span> |
| | </div> |
| | <div class="flex flex-col items-center"> |
| | <div class="w-12 h-12 rounded-full bg-green-100 flex items-center justify-center mb-2"> |
| | <i class="fas fa-bug text-green-500"></i> |
| | </div> |
| | <span class="text-sm font-medium text-gray-700">50% Fewer Bugs</span> |
| | </div> |
| | <div class="flex flex-col items-center"> |
| | <div class="w-12 h-12 rounded-full bg-orange-100 flex items-center justify-center mb-2"> |
| | <i class="fas fa-shipping-fast text-orange-500"></i> |
| | </div> |
| | <span class="text-sm font-medium text-gray-700">3x Faster Deployments</span> |
| | </div> |
| | </div> |
| | </div> |
| | </div> |
| | </div> |
| | <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=sgch2023/ide-ui" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
| | </html> |