Appelons ce concept CogniFlow. Un SaaS où l'IA générative est le point de départ de toute automatisation.
c4395c3
verified
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>CogniFlow | AI-Powered Automation</title> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script> | |
| <style> | |
| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap'); | |
| body { | |
| font-family: 'Inter', sans-serif; | |
| } | |
| #hero { | |
| position: relative; | |
| overflow: hidden; | |
| } | |
| .vanta-canvas { | |
| position: absolute ; | |
| opacity: 0.3; | |
| } | |
| .gradient-text { | |
| background: linear-gradient(90deg, #4F46E5 0%, #EC4899 100%); | |
| -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); | |
| } | |
| .prompt-box { | |
| min-height: 150px; | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-gray-50"> | |
| <!-- Navigation --> | |
| <nav class="bg-white shadow-sm"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="flex justify-between h-16"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0 flex items-center"> | |
| <i data-feather="zap" class="h-6 w-6 text-indigo-600"></i> | |
| <span class="ml-2 text-xl font-bold text-gray-900">CogniFlow</span> | |
| </div> | |
| </div> | |
| <div class="hidden md:ml-6 md:flex md:items-center md:space-x-8"> | |
| <a href="#" class="text-indigo-600 font-medium">Dashboard</a> | |
| <a href="#" class="text-gray-500 hover:text-gray-900 font-medium">Studio</a> | |
| <a href="#" class="text-gray-500 hover:text-gray-900 font-medium">Catalog</a> | |
| <a href="#" class="text-gray-500 hover:text-gray-900 font-medium">Docs</a> | |
| </div> | |
| <div class="flex items-center"> | |
| <button class="bg-indigo-600 text-white px-4 py-2 rounded-md text-sm font-medium hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500"> | |
| Sign In | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Hero Section --> | |
| <div id="hero" class="relative py-16 sm:py-24"> | |
| <div class="vanta-canvas"></div> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 relative z-10"> | |
| <div class="text-center"> | |
| <h1 class="text-4xl md:text-6xl font-bold text-gray-900 mb-6"> | |
| <span class="gradient-text">Automate Anything</span> with AI | |
| </h1> | |
| <p class="mt-3 max-w-md mx-auto text-lg text-gray-500 sm:text-xl md:mt-5 md:max-w-3xl"> | |
| Describe your process in plain English and let our AI build the perfect workflow for you. | |
| </p> | |
| <div class="mt-10"> | |
| <a href="#" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md shadow-sm text-white bg-indigo-600 hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500"> | |
| Try the AI Studio | |
| <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- AI Generation Process --> | |
| <div class="py-16 bg-white"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="lg:text-center"> | |
| <h2 class="text-base text-indigo-600 font-semibold tracking-wide uppercase">How it works</h2> | |
| <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl"> | |
| From idea to automation in minutes | |
| </p> | |
| </div> | |
| <div class="mt-20"> | |
| <div class="space-y-20 lg:space-y-0 lg:grid lg:grid-cols-3 lg:gap-x-8 lg:gap-y-20"> | |
| <!-- Step 1 --> | |
| <div class="relative group card-hover"> | |
| <div class="absolute -inset-1 bg-gradient-to-r from-indigo-500 to-pink-500 rounded-lg blur opacity-25 group-hover:opacity-100 transition duration-1000 group-hover:duration-200"></div> | |
| <div class="relative bg-white p-6 rounded-lg shadow-md h-full"> | |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-indigo-100 text-indigo-600 mb-4"> | |
| <span class="text-lg font-bold">1</span> | |
| </div> | |
| <h3 class="text-lg font-medium text-gray-900 mb-2">Describe Your Need</h3> | |
| <p class="text-gray-500"> | |
| Simply tell our AI what process you want to automate using natural language. | |
| </p> | |
| </div> | |
| </div> | |
| <!-- Step 2 --> | |
| <div class="relative group card-hover"> | |
| <div class="absolute -inset-1 bg-gradient-to-r from-pink-500 to-purple-500 rounded-lg blur opacity-25 group-hover:opacity-100 transition duration-1000 group-hover:duration-200"></div> | |
| <div class="relative bg-white p-6 rounded-lg shadow-md h-full"> | |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-pink-100 text-pink-600 mb-4"> | |
| <span class="text-lg font-bold">2</span> | |
| </div> | |
| <h3 class="text-lg font-medium text-gray-900 mb-2">AI Generates Workflow</h3> | |
| <p class="text-gray-500"> | |
| Our AI analyzes your request and creates a complete workflow with forms, tasks, and notifications. | |
| </p> | |
| </div> | |
| </div> | |
| <!-- Step 3 --> | |
| <div class="relative group card-hover"> | |
| <div class="absolute -inset-1 bg-gradient-to-r from-purple-500 to-indigo-500 rounded-lg blur opacity-25 group-hover:opacity-100 transition duration-1000 group-hover:duration-200"></div> | |
| <div class="relative bg-white p-6 rounded-lg shadow-md h-full"> | |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-purple-100 text-purple-600 mb-4"> | |
| <span class="text-lg font-bold">3</span> | |
| </div> | |
| <h3 class="text-lg font-medium text-gray-900 mb-2">Refine & Activate</h3> | |
| <p class="text-gray-500"> | |
| Review the AI's work, make any adjustments needed, and activate your new automation. | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Example Prompt Section --> | |
| <div class="py-16 bg-gray-50"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="lg:text-center mb-12"> | |
| <h2 class="text-base text-indigo-600 font-semibold tracking-wide uppercase">Try it yourself</h2> | |
| <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl"> | |
| Example AI Prompt | |
| </p> | |
| </div> | |
| <div class="bg-white shadow rounded-lg overflow-hidden"> | |
| <div class="p-6"> | |
| <div class="flex items-start"> | |
| <div class="flex-shrink-0"> | |
| <i data-feather="message-square" class="h-6 w-6 text-indigo-600"></i> | |
| </div> | |
| <div class="ml-4 flex-1"> | |
| <h3 class="text-lg font-medium text-gray-900 mb-2">Describe what you want to automate:</h3> | |
| <div class="bg-gray-50 border border-gray-200 rounded-md p-4 prompt-box"> | |
| <p class="text-gray-700 italic">"Create an onboarding process for new employees. IT needs to prepare their equipment, HR needs to schedule orientation, and the manager should receive a task to set up their workstation. Send welcome email 3 days before start date."</p> | |
| </div> | |
| <div class="mt-4 flex justify-end"> | |
| <button class="inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm text-white bg-indigo-600 hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500"> | |
| Generate with AI | |
| <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Features Section --> | |
| <div class="py-16 bg-white"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="lg:text-center mb-12"> | |
| <h2 class="text-base text-indigo-600 font-semibold tracking-wide uppercase">Features</h2> | |
| <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl"> | |
| Powerful automation made simple | |
| </p> | |
| </div> | |
| <div class="grid grid-cols-1 gap-8 md:grid-cols-2 lg:grid-cols-3"> | |
| <!-- Feature 1 --> | |
| <div class="card-hover bg-white p-6 rounded-lg shadow-md"> | |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-indigo-100 text-indigo-600 mb-4"> | |
| <i data-feather="cpu" class="h-6 w-6"></i> | |
| </div> | |
| <h3 class="text-lg font-medium text-gray-900 mb-2">AI-Powered Generation</h3> | |
| <p class="text-gray-500"> | |
| Our advanced AI understands your needs and creates complete workflows automatically. | |
| </p> | |
| </div> | |
| <!-- Feature 2 --> | |
| <div class="card-hover bg-white p-6 rounded-lg shadow-md"> | |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-pink-100 text-pink-600 mb-4"> | |
| <i data-feather="edit" class="h-6 w-6"></i> | |
| </div> | |
| <h3 class="text-lg font-medium text-gray-900 mb-2">Visual Editor</h3> | |
| <p class="text-gray-500"> | |
| Easily modify AI-generated workflows with our intuitive drag-and-drop interface. | |
| </p> | |
| </div> | |
| <!-- Feature 3 --> | |
| <div class="card-hover bg-white p-6 rounded-lg shadow-md"> | |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-purple-100 text-purple-600 mb-4"> | |
| <i data-feather="layers" class="h-6 w-6"></i> | |
| </div> | |
| <h3 class="text-lg font-medium text-gray-900 mb-2">Template Library</h3> | |
| <p class="text-gray-500"> | |
| Start from pre-built templates for common processes across departments. | |
| </p> | |
| </div> | |
| <!-- Feature 4 --> | |
| <div class="card-hover bg-white p-6 rounded-lg shadow-md"> | |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-100 text-blue-600 mb-4"> | |
| <i data-feather="users" class="h-6 w-6"></i> | |
| </div> | |
| <h3 class="text-lg font-medium text-gray-900 mb-2">Team Collaboration</h3> | |
| <p class="text-gray-500"> | |
| Share and collaborate on workflows with your team members seamlessly. | |
| </p> | |
| </div> | |
| <!-- Feature 5 --> | |
| <div class="card-hover bg-white p-6 rounded-lg shadow-md"> | |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-green-100 text-green-600 mb-4"> | |
| <i data-feather="zap" class="h-6 w-6"></i> | |
| </div> | |
| <h3 class="text-lg font-medium text-gray-900 mb-2">100+ Integrations</h3> | |
| <p class="text-gray-500"> | |
| Connect with your favorite apps like Slack, Gmail, Salesforce, and more. | |
| </p> | |
| </div> | |
| <!-- Feature 6 --> | |
| <div class="card-hover bg-white p-6 rounded-lg shadow-md"> | |
| <div class="flex items-center justify-center h-12 w-12 rounded-md bg-yellow-100 text-yellow-600 mb-4"> | |
| <i data-feather="bar-chart-2" class="h-6 w-6"></i> | |
| </div> | |
| <h3 class="text-lg font-medium text-gray-900 mb-2">Analytics Dashboard</h3> | |
| <p class="text-gray-500"> | |
| Track process efficiency and identify bottlenecks with detailed analytics. | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- CTA Section --> | |
| <div class="bg-indigo-700"> | |
| <div class="max-w-7xl mx-auto py-16 px-4 sm:py-24 sm:px-6 lg:px-8"> | |
| <div class="text-center"> | |
| <h2 class="text-3xl font-extrabold tracking-tight text-white sm:text-4xl"> | |
| <span class="block">Ready to transform your workflows?</span> | |
| <span class="block">Start automating with AI today.</span> | |
| </h2> | |
| <div class="mt-10 max-w-sm mx-auto sm:max-w-none sm:flex sm:justify-center"> | |
| <div class="space-y-4 sm:space-y-0 sm:mx-auto sm:inline-grid sm:grid-cols-2 sm:gap-5"> | |
| <a href="#" class="flex items-center justify-center px-4 py-3 border border-transparent text-base font-medium rounded-md shadow-sm text-indigo-700 bg-white hover:bg-indigo-50 sm:px-8"> | |
| Get Started | |
| </a> | |
| <a href="#" class="flex items-center justify-center px-4 py-3 border border-transparent text-base font-medium rounded-md shadow-sm text-white bg-indigo-600 bg-opacity-60 hover:bg-opacity-70 sm:px-8"> | |
| Live Demo | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Footer --> | |
| <footer class="bg-gray-800"> | |
| <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8"> | |
| <div class="grid grid-cols-2 md:grid-cols-4 gap-8"> | |
| <div> | |
| <h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Product</h3> | |
| <ul class="mt-4 space-y-4"> | |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">Features</a></li> | |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">Pricing</a></li> | |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">Integrations</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Resources</h3> | |
| <ul class="mt-4 space-y-4"> | |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">Documentation</a></li> | |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">API Reference</a></li> | |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">Community</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Company</h3> | |
| <ul class="mt-4 space-y-4"> | |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">About</a></li> | |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">Blog</a></li> | |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">Careers</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Legal</h3> | |
| <ul class="mt-4 space-y-4"> | |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">Privacy</a></li> | |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">Terms</a></li> | |
| <li><a href="#" class="text-base text-gray-300 hover:text-white">Security</a></li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="mt-12 border-t border-gray-700 pt-8 flex flex-col md:flex-row justify-between items-center"> | |
| <p class="text-base text-gray-400"> | |
| © 2023 CogniFlow. All rights reserved. | |
| </p> | |
| <div class="mt-4 md:mt-0 flex space-x-6"> | |
| <a href="#" class="text-gray-400 hover:text-white"> | |
| <i data-feather="twitter" class="h-6 w-6"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white"> | |
| <i data-feather="github" class="h-6 w-6"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white"> | |
| <i data-feather="linkedin" class="h-6 w-6"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| // Initialize Vanta.js globe effect | |
| VANTA.GLOBE({ | |
| el: "#hero", | |
| mouseControls: true, | |
| touchControls: true, | |
| gyroControls: false, | |
| minHeight: 200.00, | |
| minWidth: 200.00, | |
| scale: 1.00, | |
| scaleMobile: 1.00, | |
| color: 0x4f46e5, | |
| backgroundColor: 0xf9fafb | |
| }); | |
| // Initialize Feather Icons | |
| feather.replace(); | |
| </script> | |
| </body> | |
| </html> | |