Spaces:
Running
Running
File size: 43,361 Bytes
7454e3e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 |
<!DOCTYPE html>
<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> |