Saskw2010 commited on
Commit
0eb59b6
·
verified ·
1 Parent(s): b83b8bf

but https://68f8y2nazp.space.minimax.io is better can we make new site clone of that - Follow Up Deployment

Browse files
Files changed (1) hide show
  1. index.html +47 -72
index.html CHANGED
@@ -8,15 +8,16 @@
8
  <script src="https://cdn.jsdelivr.net/npm/vue@3.2.47/dist/vue.global.min.js"></script>
9
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
10
  <style>
 
 
 
 
11
  .gradient-text {
12
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
13
  -webkit-background-clip: text;
14
  background-clip: text;
15
  color: transparent;
16
  }
17
- .hero-gradient {
18
- background: linear-gradient(135deg, #1e3a8a 0%, #111827 100%);
19
- }
20
  .feature-card:hover {
21
  transform: translateY(-5px);
22
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
@@ -87,44 +88,22 @@
87
  </nav>
88
 
89
  <!-- Hero Section -->
90
- <section class="hero-gradient pt-24 pb-20 md:pt-32 md:pb-28">
91
- <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
92
- <div class="md:flex md:items-center md:justify-between">
93
- <div class="md:w-1/2 mb-12 md:mb-0">
94
- <h1 class="text-4xl md:text-5xl lg:text-6xl font-bold text-white leading-tight mb-6">
95
- Cloud Computing <span class="gradient-text">Reimagined</span>
96
- </h1>
97
- <p class="text-xl text-gray-300 mb-8">
98
- WytSky delivers unparalleled cloud performance with cutting-edge technology and enterprise-grade security.
99
- </p>
100
- <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
101
- <button @click="showModal = true" class="bg-blue-600 hover:bg-blue-700 text-white px-8 py-4 rounded-lg text-lg font-semibold transition duration-300 transform hover:scale-105 flex items-center justify-center">
102
- Start Free Trial <i class="fas fa-arrow-right ml-2"></i>
103
- </button>
104
- <button class="bg-transparent border-2 border-blue-400 text-blue-400 hover:bg-blue-400/10 px-8 py-4 rounded-lg text-lg font-semibold transition duration-300">
105
- Learn More
106
- </button>
107
- </div>
108
- <div class="mt-8 flex items-center space-x-4">
109
- <div class="flex -space-x-2">
110
- <img class="inline-block h-10 w-10 rounded-full ring-2 ring-white" src="https://randomuser.me/api/portraits/women/12.jpg" alt="User">
111
- <img class="inline-block h-10 w-10 rounded-full ring-2 ring-white" src="https://randomuser.me/api/portraits/men/11.jpg" alt="User">
112
- <img class="inline-block h-10 w-10 rounded-full ring-2 ring-white" src="https://randomuser.me/api/portraits/women/17.jpg" alt="User">
113
- </div>
114
- <div class="text-gray-300">
115
- <span class="font-semibold text-white">10,000+</span> businesses trust WytSky
116
- </div>
117
- </div>
118
- </div>
119
- <div class="md:w-1/2 relative">
120
- <div class="relative">
121
- <div class="absolute -top-6 -left-6 w-64 h-64 bg-purple-500 rounded-full mix-blend-multiply filter blur-xl opacity-70 animate-blob"></div>
122
- <div class="absolute -bottom-8 -right-8 w-64 h-64 bg-blue-500 rounded-full mix-blend-multiply filter blur-xl opacity-70 animate-blob animation-delay-2000"></div>
123
- <div class="absolute top-20 -right-10 w-64 h-64 bg-indigo-500 rounded-full mix-blend-multiply filter blur-xl opacity-70 animate-blob animation-delay-4000"></div>
124
- <div class="relative bg-white/10 backdrop-blur-md rounded-2xl overflow-hidden border border-gray-700/30 p-1 glow">
125
- <img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Cloud Dashboard" class="rounded-xl w-full h-auto">
126
- </div>
127
- </div>
128
  </div>
129
  </div>
130
  </div>
@@ -146,24 +125,20 @@
146
  </section>
147
 
148
  <!-- Features Section -->
149
- <section id="features" class="py-20">
150
  <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
151
  <div class="text-center mb-16">
152
- <span class="inline-block px-3 py-1 text-sm font-semibold text-blue-600 bg-blue-100 rounded-full mb-4">FEATURES</span>
153
- <h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">Powerful Cloud Infrastructure</h2>
154
- <p class="text-xl text-gray-600 max-w-3xl mx-auto">Everything you need to build, deploy, and scale your applications with confidence.</p>
155
  </div>
156
 
157
- <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
158
- <div v-for="(feature, index) in features" :key="index" class="feature-card bg-white p-8 rounded-xl border border-gray-200 transition duration-300 hover:border-blue-200">
159
- <div class="w-14 h-14 bg-blue-100 rounded-lg flex items-center justify-center mb-6">
160
- <i :class="feature.icon" class="text-blue-600 text-2xl"></i>
161
  </div>
162
- <h3 class="text-xl font-bold text-gray-900 mb-3">{{ feature.title }}</h3>
163
- <p class="text-gray-600 mb-4">{{ feature.description }}</p>
164
- <a href="#" class="text-blue-600 font-medium inline-flex items-center">
165
- Learn more <i class="fas fa-arrow-right ml-2"></i>
166
- </a>
167
  </div>
168
  </div>
169
  </div>
@@ -456,34 +431,34 @@
456
 
457
  const features = ref([
458
  {
459
- icon: 'fas fa-server',
460
- title: 'High-Performance Compute',
461
- description: 'Deploy virtual machines with industry-leading performance and reliability.'
462
  },
463
  {
464
- icon: 'fas fa-database',
465
- title: 'Scalable Storage',
466
- description: 'Easily scale your storage needs with our distributed cloud storage solutions.'
467
  },
468
  {
469
- icon: 'fas fa-shield-alt',
470
- title: 'Enterprise Security',
471
- description: 'Military-grade encryption and compliance with global security standards.'
472
  },
473
  {
474
- icon: 'fas fa-network-wired',
475
- title: 'Global Network',
476
- description: 'Low-latency connectivity across our worldwide data center locations.'
477
  },
478
  {
479
- icon: 'fas fa-robot',
480
- title: 'AI & Machine Learning',
481
- description: 'Built-in tools for developing and deploying AI models at scale.'
482
  },
483
  {
484
- icon: 'fas fa-tachometer-alt',
485
- title: 'Real-time Analytics',
486
- description: 'Monitor and optimize your cloud resources with comprehensive dashboards.'
487
  }
488
  ]);
489
 
 
8
  <script src="https://cdn.jsdelivr.net/npm/vue@3.2.47/dist/vue.global.min.js"></script>
9
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
10
  <style>
11
+ body {
12
+ background-color: #000;
13
+ color: #fff;
14
+ }
15
  .gradient-text {
16
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
17
  -webkit-background-clip: text;
18
  background-clip: text;
19
  color: transparent;
20
  }
 
 
 
21
  .feature-card:hover {
22
  transform: translateY(-5px);
23
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
 
88
  </nav>
89
 
90
  <!-- Hero Section -->
91
+ <section class="bg-black text-white">
92
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-32">
93
+ <div class="text-center">
94
+ <h1 class="text-5xl md:text-7xl font-bold mb-6">
95
+ <span class="text-transparent bg-clip-text bg-gradient-to-r from-blue-400 to-purple-600">Minimax</span> API
96
+ </h1>
97
+ <p class="text-xl md:text-2xl text-gray-300 max-w-3xl mx-auto mb-10">
98
+ The most powerful AI API for building next-generation applications
99
+ </p>
100
+ <div class="flex flex-col sm:flex-row justify-center gap-4">
101
+ <button class="bg-gradient-to-r from-blue-500 to-purple-600 text-white px-8 py-4 rounded-lg text-lg font-semibold hover:opacity-90 transition">
102
+ Get Started
103
+ </button>
104
+ <button class="bg-transparent border border-gray-600 text-white px-8 py-4 rounded-lg text-lg font-semibold hover:bg-gray-800 transition">
105
+ Documentation
106
+ </button>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
107
  </div>
108
  </div>
109
  </div>
 
125
  </section>
126
 
127
  <!-- Features Section -->
128
+ <section id="features" class="bg-gray-900 text-white py-20">
129
  <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
130
  <div class="text-center mb-16">
131
+ <h2 class="text-3xl md:text-4xl font-bold mb-6">Advanced AI Capabilities</h2>
132
+ <p class="text-xl text-gray-400 max-w-3xl mx-auto">Build with the most advanced AI models available</p>
 
133
  </div>
134
 
135
+ <div class="grid md:grid-cols-3 gap-8">
136
+ <div v-for="(feature, index) in features" :key="index" class="bg-gray-800 p-8 rounded-xl hover:bg-gray-700 transition">
137
+ <div class="w-12 h-12 bg-gradient-to-r from-blue-500 to-purple-600 rounded-lg flex items-center justify-center mb-6">
138
+ <i :class="feature.icon" class="text-white text-xl"></i>
139
  </div>
140
+ <h3 class="text-xl font-bold mb-3">{{ feature.title }}</h3>
141
+ <p class="text-gray-400 mb-4">{{ feature.description }}</p>
 
 
 
142
  </div>
143
  </div>
144
  </div>
 
431
 
432
  const features = ref([
433
  {
434
+ icon: 'fas fa-brain',
435
+ title: 'Large Language Models',
436
+ description: 'State-of-the-art models for text generation and understanding.'
437
  },
438
  {
439
+ icon: 'fas fa-comments',
440
+ title: 'Conversational AI',
441
+ description: 'Build chatbots and virtual assistants that understand context.'
442
  },
443
  {
444
+ icon: 'fas fa-code',
445
+ title: 'Code Generation',
446
+ description: 'Generate and complete code in multiple programming languages.'
447
  },
448
  {
449
+ icon: 'fas fa-image',
450
+ title: 'Image Generation',
451
+ description: 'Create stunning images from text descriptions.'
452
  },
453
  {
454
+ icon: 'fas fa-language',
455
+ title: 'Multilingual Support',
456
+ description: 'Support for dozens of languages out of the box.'
457
  },
458
  {
459
+ icon: 'fas fa-cog',
460
+ title: 'Fine-tuning',
461
+ description: 'Customize models for your specific use case.'
462
  }
463
  ]);
464