Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>NeuroForge | Next-Gen AI Model Training</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"> | |
| <script> | |
| tailwind.config = { | |
| theme: { | |
| extend: { | |
| colors: { | |
| primary: '#6366f1', | |
| secondary: '#8b5cf6', | |
| dark: '#0f172a', | |
| light: '#f8fafc', | |
| }, | |
| fontFamily: { | |
| sans: ['Inter', 'sans-serif'], | |
| }, | |
| } | |
| } | |
| } | |
| </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; | |
| background-color: #f8fafc; | |
| } | |
| .gradient-bg { | |
| background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%); | |
| } | |
| .hero-gradient { | |
| background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%); | |
| } | |
| .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); | |
| } | |
| .feature-icon { | |
| width: 60px; | |
| height: 60px; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| border-radius: 12px; | |
| margin-bottom: 1rem; | |
| } | |
| .animated-underline { | |
| position: relative; | |
| display: inline-block; | |
| } | |
| .animated-underline::after { | |
| content: ''; | |
| position: absolute; | |
| width: 100%; | |
| height: 2px; | |
| bottom: -2px; | |
| left: 0; | |
| background-color: #6366f1; | |
| transform: scaleX(0); | |
| transform-origin: bottom right; | |
| transition: transform 0.3s ease; | |
| } | |
| .animated-underline:hover::after { | |
| transform: scaleX(1); | |
| transform-origin: bottom left; | |
| } | |
| .glow { | |
| animation: glow 2s ease-in-out infinite alternate; | |
| } | |
| @keyframes glow { | |
| from { | |
| box-shadow: 0 0 5px rgba(99, 102, 241, 0.5); | |
| } | |
| to { | |
| box-shadow: 0 0 20px rgba(99, 102, 241, 0.8); | |
| } | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <!-- Navigation --> | |
| <nav class="bg-white shadow-sm fixed w-full z-10"> | |
| <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 class="fas fa-brain text-primary text-2xl mr-2"></i> | |
| <span class="text-xl font-bold text-dark">NeuroForge</span> | |
| </div> | |
| </div> | |
| <div class="hidden md:ml-6 md:flex md:items-center md:space-x-8"> | |
| <a href="#features" class="text-gray-500 hover:text-primary px-3 py-2 text-sm font-medium animated-underline">Features</a> | |
| <a href="#solutions" class="text-gray-500 hover:text-primary px-3 py-2 text-sm font-medium animated-underline">Solutions</a> | |
| <a href="#pricing" class="text-gray-500 hover:text-primary px-3 py-2 text-sm font-medium animated-underline">Pricing</a> | |
| <a href="#resources" class="text-gray-500 hover:text-primary px-3 py-2 text-sm font-medium animated-underline">Resources</a> | |
| <a href="#contact" class="text-gray-500 hover:text-primary px-3 py-2 text-sm font-medium animated-underline">Contact</a> | |
| </div> | |
| <div class="hidden md:ml-6 md:flex md:items-center"> | |
| <a href="#" class="px-4 py-2 border border-transparent text-sm font-medium rounded-md text-white bg-primary hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500">Get Started</a> | |
| </div> | |
| <div class="-mr-2 flex items-center md:hidden"> | |
| <button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-primary" aria-controls="mobile-menu" aria-expanded="false" id="mobile-menu-button"> | |
| <span class="sr-only">Open main menu</span> | |
| <i class="fas fa-bars"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Mobile menu --> | |
| <div class="hidden md:hidden" id="mobile-menu"> | |
| <div class="pt-2 pb-3 space-y-1"> | |
| <a href="#features" class="block pl-3 pr-4 py-2 border-l-4 border-primary text-base font-medium text-primary bg-indigo-50">Features</a> | |
| <a href="#solutions" class="block pl-3 pr-4 py-2 border-l-4 border-transparent text-base font-medium text-gray-600 hover:text-gray-800 hover:bg-gray-50 hover:border-gray-300">Solutions</a> | |
| <a href="#pricing" class="block pl-3 pr-4 py-2 border-l-4 border-transparent text-base font-medium text-gray-600 hover:text-gray-800 hover:bg-gray-50 hover:border-gray-300">Pricing</a> | |
| <a href="#resources" class="block pl-3 pr-4 py-2 border-l-4 border-transparent text-base font-medium text-gray-600 hover:text-gray-800 hover:bg-gray-50 hover:border-gray-300">Resources</a> | |
| <a href="#contact" class="block pl-3 pr-4 py-2 border-l-4 border-transparent text-base font-medium text-gray-600 hover:text-gray-800 hover:bg-gray-50 hover:border-gray-300">Contact</a> | |
| <div class="mt-4 pl-3 pr-4"> | |
| <a href="#" class="block w-full px-4 py-2 border border-transparent text-center text-sm font-medium rounded-md text-white bg-primary hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500">Get Started</a> | |
| </div> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Hero Section --> | |
| <div class="hero-gradient pt-24 pb-16 md:pt-32 md:pb-24"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="lg:grid lg:grid-cols-12 lg:gap-8"> | |
| <div class="px-4 sm:px-0 sm:text-center md:max-w-2xl md:mx-auto lg:col-span-6 lg:text-left lg:flex lg:items-center"> | |
| <div> | |
| <h1 class="text-4xl tracking-tight font-extrabold text-dark sm:text-5xl md:text-6xl"> | |
| <span class="block">Train Your AI Models</span> | |
| <span class="block text-primary">Without the Complexity</span> | |
| </h1> | |
| <p class="mt-3 text-base text-gray-500 sm:mt-5 sm:text-lg sm:max-w-xl sm:mx-auto md:mt-5 md:text-xl lg:mx-0"> | |
| NeuroForge simplifies generative AI model training with our intuitive platform, powerful infrastructure, and expert guidance. | |
| </p> | |
| <div class="mt-8 sm:max-w-lg sm:mx-auto sm:text-center lg:text-left lg:mx-0"> | |
| <div class="flex flex-col sm:flex-row space-y-3 sm:space-y-0 sm:space-x-4"> | |
| <a href="#" class="px-6 py-3 border border-transparent text-base font-medium rounded-md text-white bg-primary hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500">Start Free Trial</a> | |
| <a href="#" class="px-6 py-3 border border-transparent text-base font-medium rounded-md text-primary bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500">See Demo</a> | |
| </div> | |
| <p class="mt-3 text-xs text-gray-400"> | |
| No credit card required. 14-day free trial. | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mt-12 relative sm:max-w-lg sm:mx-auto lg:mt-0 lg:max-w-none lg:mx-0 lg:col-span-6 lg:flex lg:items-center"> | |
| <div class="relative mx-auto w-full rounded-lg shadow-lg lg:max-w-md"> | |
| <div class="relative block w-full bg-white rounded-lg overflow-hidden"> | |
| <div class="px-6 py-8"> | |
| <div class="flex items-center justify-center h-48 bg-gradient-to-r from-indigo-100 to-purple-100 rounded-lg mb-6"> | |
| <i class="fas fa-robot text-6xl text-primary opacity-50"></i> | |
| </div> | |
| <h3 class="text-lg font-medium text-dark mb-2">Model Training Dashboard</h3> | |
| <p class="text-gray-500 text-sm"> | |
| Monitor your AI model training in real-time with our intuitive dashboard. | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Trusted By Section --> | |
| <div class="bg-white py-8"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <p class="text-center text-sm font-semibold uppercase text-gray-500 tracking-wide"> | |
| Trusted by innovative teams worldwide | |
| </p> | |
| <div class="mt-6 grid grid-cols-2 gap-8 md:grid-cols-6 lg:grid-cols-5"> | |
| <div class="col-span-1 flex justify-center items-center"> | |
| <img class="h-12" src="https://tailwindui.com/img/logos/tuple-logo-gray-400.svg" alt="Tuple"> | |
| </div> | |
| <div class="col-span-1 flex justify-center items-center"> | |
| <img class="h-12" src="https://tailwindui.com/img/logos/mirage-logo-gray-400.svg" alt="Mirage"> | |
| </div> | |
| <div class="col-span-1 flex justify-center items-center"> | |
| <img class="h-12" src="https://tailwindui.com/img/logos/statickit-logo-gray-400.svg" alt="StaticKit"> | |
| </div> | |
| <div class="col-span-1 flex justify-center items-center"> | |
| <img class="h-12" src="https://tailwindui.com/img/logos/transistor-logo-gray-400.svg" alt="Transistor"> | |
| </div> | |
| <div class="col-span-1 flex justify-center items-center"> | |
| <img class="h-12" src="https://tailwindui.com/img/logos/workcation-logo-gray-400.svg" alt="Workcation"> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Features Section --> | |
| <div id="features" class="py-16 bg-gray-50 overflow-hidden"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="relative"> | |
| <h2 class="text-center text-3xl font-extrabold text-dark sm:text-4xl"> | |
| Powerful Features for AI Training | |
| </h2> | |
| <p class="mt-4 max-w-3xl mx-auto text-center text-gray-500"> | |
| Our platform provides everything you need to train state-of-the-art generative AI models efficiently. | |
| </p> | |
| </div> | |
| <div class="mt-12"> | |
| <div class="grid grid-cols-1 gap-8 sm:grid-cols-2 lg:grid-cols-3"> | |
| <!-- Feature 1 --> | |
| <div class="bg-white rounded-lg shadow-md overflow-hidden card-hover"> | |
| <div class="px-6 py-8"> | |
| <div class="feature-icon gradient-bg text-white"> | |
| <i class="fas fa-bolt text-2xl"></i> | |
| </div> | |
| <h3 class="text-lg font-medium text-dark mb-2">Rapid Training</h3> | |
| <p class="text-gray-500"> | |
| Leverage our distributed computing infrastructure to train models up to 10x faster than standard platforms. | |
| </p> | |
| </div> | |
| </div> | |
| <!-- Feature 2 --> | |
| <div class="bg-white rounded-lg shadow-md overflow-hidden card-hover"> | |
| <div class="px-6 py-8"> | |
| <div class="feature-icon bg-purple-100 text-primary"> | |
| <i class="fas fa-sliders-h text-2xl"></i> | |
| </div> | |
| <h3 class="text-lg font-medium text-dark mb-2">Hyperparameter Optimization</h3> | |
| <p class="text-gray-500"> | |
| Automated tuning of model parameters to achieve optimal performance without manual trial and error. | |
| </p> | |
| </div> | |
| </div> | |
| <!-- Feature 3 --> | |
| <div class="bg-white rounded-lg shadow-md overflow-hidden card-hover"> | |
| <div class="px-6 py-8"> | |
| <div class="feature-icon bg-indigo-100 text-primary"> | |
| <i class="fas fa-chart-line text-2xl"></i> | |
| </div> | |
| <h3 class="text-lg font-medium text-dark mb-2">Real-time Analytics</h3> | |
| <p class="text-gray-500"> | |
| Monitor training progress with comprehensive visualizations and performance metrics. | |
| </p> | |
| </div> | |
| </div> | |
| <!-- Feature 4 --> | |
| <div class="bg-white rounded-lg shadow-md overflow-hidden card-hover"> | |
| <div class="px-6 py-8"> | |
| <div class="feature-icon bg-blue-100 text-blue-600"> | |
| <i class="fas fa-project-diagram text-2xl"></i> | |
| </div> | |
| <h3 class="text-lg font-medium text-dark mb-2">Model Architectures</h3> | |
| <p class="text-gray-500"> | |
| Choose from pre-configured architectures or customize your own with our intuitive builder. | |
| </p> | |
| </div> | |
| </div> | |
| <!-- Feature 5 --> | |
| <div class="bg-white rounded-lg shadow-md overflow-hidden card-hover"> | |
| <div class="px-6 py-8"> | |
| <div class="feature-icon bg-green-100 text-green-600"> | |
| <i class="fas fa-database text-2xl"></i> | |
| </div> | |
| <h3 class="text-lg font-medium text-dark mb-2">Data Management</h3> | |
| <p class="text-gray-500"> | |
| Easily upload, version, and manage your training datasets with our integrated storage system. | |
| </p> | |
| </div> | |
| </div> | |
| <!-- Feature 6 --> | |
| <div class="bg-white rounded-lg shadow-md overflow-hidden card-hover"> | |
| <div class="px-6 py-8"> | |
| <div class="feature-icon bg-red-100 text-red-600"> | |
| <i class="fas fa-shield-alt text-2xl"></i> | |
| </div> | |
| <h3 class="text-lg font-medium text-dark mb-2">Security & Compliance</h3> | |
| <p class="text-gray-500"> | |
| Enterprise-grade security with encryption at rest and in transit, plus compliance certifications. | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Solutions Section --> | |
| <div id="solutions" 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-3xl font-extrabold text-dark sm:text-4xl"> | |
| Solutions for Every Use Case | |
| </h2> | |
| <p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto"> | |
| Whether you're a researcher, startup, or enterprise, we have the right solution for your AI needs. | |
| </p> | |
| </div> | |
| <div class="mt-20"> | |
| <div class="space-y-10 md:space-y-0 md:grid md:grid-cols-2 md:gap-x-8 md:gap-y-10"> | |
| <!-- Solution 1 --> | |
| <div class="relative"> | |
| <div class="absolute flex items-center justify-center h-12 w-12 rounded-md bg-indigo-500 text-white"> | |
| <i class="fas fa-flask"></i> | |
| </div> | |
| <p class="ml-16 text-lg leading-6 font-medium text-dark">Research & Development</p> | |
| <p class="mt-2 ml-16 text-base text-gray-500"> | |
| Accelerate your AI research with our platform's cutting-edge capabilities and computational power. | |
| </p> | |
| </div> | |
| <!-- Solution 2 --> | |
| <div class="relative"> | |
| <div class="absolute flex items-center justify-center h-12 w-12 rounded-md bg-indigo-500 text-white"> | |
| <i class="fas fa-rocket"></i> | |
| </div> | |
| <p class="ml-16 text-lg leading-6 font-medium text-dark">Startups</p> | |
| <p class="mt-2 ml-16 text-base text-gray-500"> | |
| Build your AI product without massive infrastructure investments. Scale as you grow. | |
| </p> | |
| </div> | |
| <!-- Solution 3 --> | |
| <div class="relative"> | |
| <div class="absolute flex items-center justify-center h-12 w-12 rounded-md bg-indigo-500 text-white"> | |
| <i class="fas fa-building"></i> | |
| </div> | |
| <p class="ml-16 text-lg leading-6 font-medium text-dark">Enterprise</p> | |
| <p class="mt-2 ml-16 text-base text-gray-500"> | |
| Deploy custom AI solutions at scale with our enterprise-grade platform and support. | |
| </p> | |
| </div> | |
| <!-- Solution 4 --> | |
| <div class="relative"> | |
| <div class="absolute flex items-center justify-center h-12 w-12 rounded-md bg-indigo-500 text-white"> | |
| <i class="fas fa-graduation-cap"></i> | |
| </div> | |
| <p class="ml-16 text-lg leading-6 font-medium text-dark">Education</p> | |
| <p class="mt-2 ml-16 text-base text-gray-500"> | |
| Teach AI concepts with hands-on experience using our simplified platform. | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Pricing Section --> | |
| <div id="pricing" class="gradient-bg py-16"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="sm:text-center"> | |
| <h2 class="text-3xl font-extrabold text-white sm:text-4xl"> | |
| Simple, Transparent Pricing | |
| </h2> | |
| <p class="mt-4 max-w-2xl text-xl text-indigo-100 sm:mx-auto"> | |
| Pay only for what you use with our flexible pricing plans. | |
| </p> | |
| </div> | |
| <div class="mt-12 space-y-4 sm:mt-16 sm:space-y-0 sm:grid sm:grid-cols-3 sm:gap-6 lg:max-w-4xl lg:mx-auto xl:max-w-none xl:mx-0"> | |
| <!-- Plan 1 --> | |
| <div class="bg-white rounded-lg shadow-md overflow-hidden card-hover"> | |
| <div class="px-6 py-8"> | |
| <h3 class="text-lg font-medium text-dark mb-2">Starter</h3> | |
| <p class="text-gray-500 mb-6">Perfect for individuals and small projects</p> | |
| <div class="flex items-baseline"> | |
| <span class="text-4xl font-extrabold text-dark">$99</span> | |
| <span class="ml-1 text-xl font-medium text-gray-500">/month</span> | |
| </div> | |
| <div class="mt-6"> | |
| <ul class="space-y-3"> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
| <span class="text-gray-700">100 GPU hours</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
| <span class="text-gray-700">50GB storage</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
| <span class="text-gray-700">Basic support</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
| <span class="text-gray-700">Standard models</span> | |
| </li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="px-6 pb-8"> | |
| <a href="#" class="block w-full px-4 py-2 border border-transparent text-center text-sm font-medium rounded-md text-white bg-primary hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500">Get started</a> | |
| </div> | |
| </div> | |
| <!-- Plan 2 (Featured) --> | |
| <div class="bg-white rounded-lg shadow-lg overflow-hidden card-hover transform scale-105 glow"> | |
| <div class="px-6 py-8"> | |
| <div class="flex justify-between items-center"> | |
| <h3 class="text-lg font-medium text-dark mb-2">Pro</h3> | |
| <span class="inline-flex items-center px-3 py-0.5 rounded-full text-xs font-medium bg-indigo-100 text-primary">Most Popular</span> | |
| </div> | |
| <p class="text-gray-500 mb-6">For growing teams and serious projects</p> | |
| <div class="flex items-baseline"> | |
| <span class="text-4xl font-extrabold text-dark">$499</span> | |
| <span class="ml-1 text-xl font-medium text-gray-500">/month</span> | |
| </div> | |
| <div class="mt-6"> | |
| <ul class="space-y-3"> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
| <span class="text-gray-700">500 GPU hours</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
| <span class="text-gray-700">250GB storage</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
| <span class="text-gray-700">Priority support</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
| <span class="text-gray-700">Advanced models</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
| <span class="text-gray-700">Team collaboration</span> | |
| </li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="px-6 pb-8"> | |
| <a href="#" class="block w-full px-4 py-2 border border-transparent text-center text-sm font-medium rounded-md text-white gradient-bg hover:opacity-90 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500">Get started</a> | |
| </div> | |
| </div> | |
| <!-- Plan 3 --> | |
| <div class="bg-white rounded-lg shadow-md overflow-hidden card-hover"> | |
| <div class="px-6 py-8"> | |
| <h3 class="text-lg font-medium text-dark mb-2">Enterprise</h3> | |
| <p class="text-gray-500 mb-6">For large-scale deployments</p> | |
| <div class="flex items-baseline"> | |
| <span class="text-4xl font-extrabold text-dark">Custom</span> | |
| </div> | |
| <div class="mt-6"> | |
| <ul class="space-y-3"> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
| <span class="text-gray-700">Unlimited GPU hours</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
| <span class="text-gray-700">1TB+ storage</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
| <span class="text-gray-700">24/7 support</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
| <span class="text-gray-700">Custom models</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
| <span class="text-gray-700">Dedicated infrastructure</span> | |
| </li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="px-6 pb-8"> | |
| <a href="#" class="block w-full px-4 py-2 border border-transparent text-center text-sm font-medium rounded-md text-white bg-primary hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500">Contact sales</a> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Testimonials Section --> | |
| <div class="bg-white py-16"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="lg:text-center"> | |
| <h2 class="text-3xl font-extrabold text-dark sm:text-4xl"> | |
| What Our Customers Say | |
| </h2> | |
| </div> | |
| <div class="mt-16"> | |
| <div class="space-y-16 lg:grid lg:grid-cols-3 lg:gap-x-8 lg:gap-y-16 lg:space-y-0"> | |
| <!-- Testimonial 1 --> | |
| <div class="bg-gray-50 p-8 rounded-lg"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0"> | |
| <img class="h-12 w-12 rounded-full" src="https://images.unsplash.com/photo-1494790108377-be9c29b29330?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt=""> | |
| </div> | |
| <div class="ml-4"> | |
| <div class="text-base font-medium text-dark">Sarah Johnson</div> | |
| <div class="text-sm text-gray-500">AI Researcher, Stanford</div> | |
| </div> | |
| </div> | |
| <div class="mt-4 text-base text-gray-600"> | |
| <p>"NeuroForge reduced our model training time by 75% compared to our previous setup. The hyperparameter optimization tools alone are worth the price."</p> | |
| </div> | |
| </div> | |
| <!-- Testimonial 2 --> | |
| <div class="bg-gray-50 p-8 rounded-lg"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0"> | |
| <img class="h-12 w-12 rounded-full" src="https://images.unsplash.com/photo-1570295999919-56ceb5ecca61?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt=""> | |
| </div> | |
| <div class="ml-4"> | |
| <div class="text-base font-medium text-dark">Michael Chen</div> | |
| <div class="text-sm text-gray-500">CTO, AI Startup</div> | |
| </div> | |
| </div> | |
| <div class="mt-4 text-base text-gray-600"> | |
| <p>"As a small startup, we couldn't afford our own GPU cluster. NeuroForge gave us access to enterprise-grade hardware at a fraction of the cost."</p> | |
| </div> | |
| </div> | |
| <!-- Testimonial 3 --> | |
| <div class="bg-gray-50 p-8 rounded-lg"> | |
| <div class="flex items-center"> | |
| <div class="flex-shrink-0"> | |
| <img class="h-12 w-12 rounded-full" src="https://images.unsplash.com/photo-1519244703995-f4e0f30006d5?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt=""> | |
| </div> | |
| <div class="ml-4"> | |
| <div class="text-base font-medium text-dark">David Rodriguez</div> | |
| <div class="text-sm text-gray-500">Director of AI, Fortune 500</div> | |
| </div> | |
| </div> | |
| <div class="mt-4 text-base text-gray-600"> | |
| <p>"We evaluated all major platforms and NeuroForge stood out for its combination of performance, ease of use, and security features."</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- CTA Section --> | |
| <div class="bg-dark"> | |
| <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:py-16 lg:px-8 lg:flex lg:items-center lg:justify-between"> | |
| <h2 class="text-3xl font-extrabold tracking-tight text-white sm:text-4xl"> | |
| <span class="block">Ready to train your AI models?</span> | |
| <span class="block text-primary">Start your free trial today.</span> | |
| </h2> | |
| <div class="mt-8 flex lg:mt-0 lg:flex-shrink-0"> | |
| <div class="inline-flex rounded-md shadow"> | |
| <a href="#" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-white bg-primary hover:bg-indigo-700"> | |
| Get started | |
| </a> | |
| </div> | |
| <div class="ml-3 inline-flex rounded-md shadow"> | |
| <a href="#" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-primary bg-white hover:bg-gray-50"> | |
| Learn more | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Footer --> | |
| <footer id="contact" class="bg-gray-800"> | |
| <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:py-16 lg:px-8"> | |
| <div class="xl:grid xl:grid-cols-3 xl:gap-8"> | |
| <div class="space-y-8 xl:col-span-1"> | |
| <div class="flex items-center"> | |
| <i class="fas fa-brain text-primary text-2xl mr-2"></i> | |
| <span class="text-xl font-bold text-white">NeuroForge</span> | |
| </div> | |
| <p class="text-gray-300 text-base"> | |
| The simplest way to train state-of-the-art generative AI models. | |
| </p> | |
| <div class="flex space-x-6"> | |
| <a href="#" class="text-gray-400 hover:text-white"> | |
| <i class="fab fa-twitter"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white"> | |
| <i class="fab fa-github"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white"> | |
| <i class="fab fa-linkedin"></i> | |
| </a> | |
| </div> | |
| </div> | |
| <div class="mt-12 grid grid-cols-2 gap-8 xl:mt-0 xl:col-span-2"> | |
| <div class="md:grid md:grid-cols-2 md:gap-8"> | |
| <div> | |
| <h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase"> | |
| Product | |
| </h3> | |
| <ul class="mt-4 space-y-4"> | |
| <li> | |
| <a href="#" class="text-base text-gray-400 hover:text-white animated-underline"> | |
| Features | |
| </a> | |
| </li> | |
| <li> | |
| <a href="#" class="text-base text-gray-400 hover:text-white animated-underline"> | |
| Pricing | |
| </a> | |
| </li> | |
| <li> | |
| <a href="#" class="text-base text-gray-400 hover:text-white animated-underline"> | |
| API | |
| </a> | |
| </li> | |
| <li> | |
| <a href="#" class="text-base text-gray-400 hover:text-white animated-underline"> | |
| Integrations | |
| </a> | |
| </li> | |
| </ul> | |
| </div> | |
| <div class="mt-12 md:mt-0"> | |
| <h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase"> | |
| Resources | |
| </h3> | |
| <ul class="mt-4 space-y-4"> | |
| <li> | |
| <a href="#" class="text-base text-gray-400 hover:text-white animated-underline"> | |
| Documentation | |
| </a> | |
| </li> | |
| <li> | |
| <a href="#" class="text-base text-gray-400 hover:text-white animated-underline"> | |
| Guides | |
| </a> | |
| </li> | |
| <li> | |
| <a href="#" class="text-base text-gray-400 hover:text-white animated-underline"> | |
| Blog | |
| </a> | |
| </li> | |
| <li> | |
| <a href="#" class="text-base text-gray-400 hover:text-white animated-underline"> | |
| Support | |
| </a> | |
| </li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="md:grid md:grid-cols-2 md:gap-8"> | |
| <div> | |
| <h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase"> | |
| Company | |
| </h3> | |
| <ul class="mt-4 space-y-4"> | |
| <li> | |
| <a href="#" class="text-base text-gray-400 hover:text-white animated-underline"> | |
| About | |
| </a> | |
| </li> | |
| <li> | |
| <a href="#" class="text-base text-gray-400 hover:text-white animated-underline"> | |
| Careers | |
| </a> | |
| </li> | |
| <li> | |
| <a href="#" class="text-base text-gray-400 hover:text-white animated-underline"> | |
| Press | |
| </a> | |
| </li> | |
| <li> | |
| <a href="#" class="text-base text-gray-400 hover:text-white animated-underline"> | |
| Contact | |
| </a> | |
| </li> | |
| </ul> | |
| </div> | |
| <div class="mt-12 md:mt-0"> | |
| <h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase"> | |
| Legal | |
| </h3> | |
| <ul class="mt-4 space-y-4"> | |
| <li> | |
| <a href="#" class="text-base text-gray-400 hover:text-white animated-underline"> | |
| Privacy | |
| </a> | |
| </li> | |
| <li> | |
| <a href="#" class="text-base text-gray-400 hover:text-white animated-underline"> | |
| Terms | |
| </a> | |
| </li> | |
| <li> | |
| <a href="#" class="text-base text-gray-400 hover:text-white animated-underline"> | |
| Security | |
| </a> | |
| </li> | |
| </ul> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mt-12 border-t border-gray-700 pt-8"> | |
| <p class="text-base text-gray-400 text-center"> | |
| © 2023 NeuroForge, Inc. All rights reserved. | |
| </p> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| // Mobile menu toggle | |
| document.getElementById('mobile-menu-button').addEventListener('click', function() { | |
| const menu = document.getElementById('mobile-menu'); | |
| if (menu.classList.contains('hidden')) { | |
| menu.classList.remove('hidden'); | |
| } else { | |
| menu.classList.add('hidden'); | |
| } | |
| }); | |
| // Smooth scrolling for anchor links | |
| document.querySelectorAll('a[href^="#"]').forEach(anchor => { | |
| anchor.addEventListener('click', function (e) { | |
| e.preventDefault(); | |
| const targetId = this.getAttribute('href'); | |
| if (targetId === '#') return; | |
| const targetElement = document.querySelector(targetId); | |
| if (targetElement) { | |
| targetElement.scrollIntoView({ | |
| behavior: 'smooth' | |
| }); | |
| // Close mobile menu if open | |
| const mobileMenu = document.getElementById('mobile-menu'); | |
| if (!mobileMenu.classList.contains('hidden')) { | |
| mobileMenu.classList.add('hidden'); | |
| } | |
| } | |
| }); | |
| }); | |
| // Add animation class when elements come into view | |
| const observer = new IntersectionObserver((entries) => { | |
| entries.forEach(entry => { | |
| if (entry.isIntersecting) { | |
| entry.target.classList.add('animate-fade-in'); | |
| } | |
| }); | |
| }, { | |
| threshold: 0.1 | |
| }); | |
| document.querySelectorAll('.card-hover').forEach(card => { | |
| observer.observe(card); | |
| }); | |
| </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=codewithdark/neuroforge" style="color: #fff;text-decoration: underline;" target="_blank" >🧬 Remix</a></p></body> | |
| </html> |