|
|
<!DOCTYPE html> |
|
|
<html lang="en"> |
|
|
<head> |
|
|
<meta charset="UTF-8"> |
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
|
<title>WytSky - Next-Gen Cloud Computing</title> |
|
|
<script src="https://cdn.tailwindcss.com"></script> |
|
|
<script src="https://cdn.jsdelivr.net/npm/vue@3.2.47/dist/vue.global.min.js"></script> |
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> |
|
|
<style> |
|
|
body { |
|
|
background-color: #000; |
|
|
color: #fff; |
|
|
} |
|
|
.gradient-text { |
|
|
background: linear-gradient(90deg, #3b82f6, #8b5cf6); |
|
|
-webkit-background-clip: text; |
|
|
background-clip: text; |
|
|
color: transparent; |
|
|
} |
|
|
.feature-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); |
|
|
} |
|
|
.glow { |
|
|
box-shadow: 0 0 15px rgba(96, 165, 250, 0.5); |
|
|
} |
|
|
.nav-link { |
|
|
position: relative; |
|
|
} |
|
|
.nav-link:after { |
|
|
content: ''; |
|
|
position: absolute; |
|
|
width: 0; |
|
|
height: 2px; |
|
|
bottom: -2px; |
|
|
left: 0; |
|
|
background-color: #3b82f6; |
|
|
transition: width 0.3s ease; |
|
|
} |
|
|
.nav-link:hover:after { |
|
|
width: 100%; |
|
|
} |
|
|
</style> |
|
|
</head> |
|
|
<body> |
|
|
<div id="app" class="font-sans antialiased text-gray-900"> |
|
|
|
|
|
<nav class="fixed w-full bg-white/90 backdrop-blur-md z-50 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"> |
|
|
<a href="#" class="flex items-center"> |
|
|
<span class="text-2xl font-bold gradient-text">WytSky</span> |
|
|
</a> |
|
|
</div> |
|
|
<div class="hidden md:flex items-center space-x-8"> |
|
|
<a href="#features" class="nav-link text-gray-700 hover:text-blue-600 transition">Features</a> |
|
|
<a href="#solutions" class="nav-link text-gray-700 hover:text-blue-600 transition">Solutions</a> |
|
|
<a href="#pricing" class="nav-link text-gray-700 hover:text-blue-600 transition">Pricing</a> |
|
|
<a href="#resources" class="nav-link text-gray-700 hover:text-blue-600 transition">Resources</a> |
|
|
<a href="#contact" class="nav-link text-gray-700 hover:text-blue-600 transition">Contact</a> |
|
|
</div> |
|
|
<div class="flex items-center space-x-4"> |
|
|
<a href="#" class="text-gray-700 hover:text-blue-600 px-3 py-2 rounded-md text-sm font-medium">Sign In</a> |
|
|
<button @click="showModal = true" class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-md text-sm font-medium transition duration-300 transform hover:scale-105"> |
|
|
Get Started |
|
|
</button> |
|
|
</div> |
|
|
<div class="md:hidden flex items-center"> |
|
|
<button @click="mobileMenuOpen = !mobileMenuOpen" class="text-gray-700 hover:text-blue-600 focus:outline-none"> |
|
|
<i class="fas fa-bars text-xl"></i> |
|
|
</button> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div v-if="mobileMenuOpen" class="md:hidden bg-white shadow-lg"> |
|
|
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3"> |
|
|
<a href="#features" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-blue-600 hover:bg-gray-50">Features</a> |
|
|
<a href="#solutions" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-blue-600 hover:bg-gray-50">Solutions</a> |
|
|
<a href="#pricing" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-blue-600 hover:bg-gray-50">Pricing</a> |
|
|
<a href="#resources" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-blue-600 hover:bg-gray-50">Resources</a> |
|
|
<a href="#contact" class="block px-3 py-2 rounded-md text-base font-medium text-gray-700 hover:text-blue-600 hover:bg-gray-50">Contact</a> |
|
|
</div> |
|
|
</div> |
|
|
</nav> |
|
|
|
|
|
|
|
|
<section class="bg-black text-white"> |
|
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-32"> |
|
|
<div class="text-center"> |
|
|
<h1 class="text-5xl md:text-7xl font-bold mb-6"> |
|
|
<span class="text-transparent bg-clip-text bg-gradient-to-r from-blue-400 to-purple-600">Minimax</span> API |
|
|
</h1> |
|
|
<p class="text-xl md:text-2xl text-gray-300 max-w-3xl mx-auto mb-10"> |
|
|
The most powerful AI API for building next-generation applications |
|
|
</p> |
|
|
<div class="flex flex-col sm:flex-row justify-center gap-4"> |
|
|
<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"> |
|
|
Get Started |
|
|
</button> |
|
|
<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"> |
|
|
Documentation |
|
|
</button> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</section> |
|
|
|
|
|
|
|
|
<section class="py-12 bg-gray-50"> |
|
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
|
<p class="text-center text-gray-500 mb-8">Trusted by innovative companies worldwide</p> |
|
|
<div class="grid grid-cols-2 md:grid-cols-4 lg:grid-cols-6 gap-8 items-center justify-center"> |
|
|
<img src="https://via.placeholder.com/150x60?text=TechCorp" alt="TechCorp" class="h-8 opacity-60 hover:opacity-100 transition mx-auto"> |
|
|
<img src="https://via.placeholder.com/150x60?text=InnoSoft" alt="InnoSoft" class="h-8 opacity-60 hover:opacity-100 transition mx-auto"> |
|
|
<img src="https://via.placeholder.com/150x60?text=DataFlow" alt="DataFlow" class="h-10 opacity-60 hover:opacity-100 transition mx-auto"> |
|
|
<img src="https://via.placeholder.com/150x60?text=CloudNine" alt="CloudNine" class="h-12 opacity-60 hover:opacity-100 transition mx-auto"> |
|
|
<img src="https://via.placeholder.com/150x60?text=NextGen" alt="NextGen" class="h-9 opacity-60 hover:opacity-100 transition mx-auto"> |
|
|
<img src="https://via.placeholder.com/150x60?text=Quantum" alt="Quantum" class="h-7 opacity-60 hover:opacity-100 transition mx-auto"> |
|
|
</div> |
|
|
</div> |
|
|
</section> |
|
|
|
|
|
|
|
|
<section id="features" class="bg-gray-900 text-white py-20"> |
|
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
|
<div class="text-center mb-16"> |
|
|
<h2 class="text-3xl md:text-4xl font-bold mb-6">Advanced AI Capabilities</h2> |
|
|
<p class="text-xl text-gray-400 max-w-3xl mx-auto">Build with the most advanced AI models available</p> |
|
|
</div> |
|
|
|
|
|
<div class="grid md:grid-cols-3 gap-8"> |
|
|
<div v-for="(feature, index) in features" :key="index" class="bg-gray-800 p-8 rounded-xl hover:bg-gray-700 transition"> |
|
|
<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"> |
|
|
<i :class="feature.icon" class="text-white text-xl"></i> |
|
|
</div> |
|
|
<h3 class="text-xl font-bold mb-3">{{ feature.title }}</h3> |
|
|
<p class="text-gray-400 mb-4">{{ feature.description }}</p> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</section> |
|
|
|
|
|
|
|
|
<section id="solutions" class="py-20 bg-gray-50"> |
|
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
|
<div class="text-center mb-16"> |
|
|
<span class="inline-block px-3 py-1 text-sm font-semibold text-purple-600 bg-purple-100 rounded-full mb-4">SOLUTIONS</span> |
|
|
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">Tailored Cloud Solutions</h2> |
|
|
<p class="text-xl text-gray-600 max-w-3xl mx-auto">We provide specialized solutions to meet your unique business needs.</p> |
|
|
</div> |
|
|
|
|
|
<div class="grid md:grid-cols-2 gap-8"> |
|
|
<div v-for="(solution, index) in solutions" :key="index" class="bg-white rounded-xl overflow-hidden shadow-md"> |
|
|
<div class="h-48 bg-gradient-to-r" :class="solution.gradient"> |
|
|
<img :src="solution.image" :alt="solution.title" class="w-full h-full object-cover opacity-70"> |
|
|
</div> |
|
|
<div class="p-8"> |
|
|
<h3 class="text-xl font-bold text-gray-900 mb-3">{{ solution.title }}</h3> |
|
|
<p class="text-gray-600 mb-6">{{ solution.description }}</p> |
|
|
<ul class="space-y-3 mb-6"> |
|
|
<li v-for="(item, i) in solution.benefits" :key="i" class="flex items-start"> |
|
|
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> |
|
|
<span class="text-gray-700">{{ item }}</span> |
|
|
</li> |
|
|
</ul> |
|
|
<a href="#" class="inline-flex items-center font-medium text-blue-600 hover:text-blue-800"> |
|
|
Explore solution <i class="fas fa-arrow-right ml-2"></i> |
|
|
</a> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</section> |
|
|
|
|
|
|
|
|
<section class="py-20 bg-gradient-to-r from-blue-800 to-indigo-900 text-white"> |
|
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
|
<div class="grid md:grid-cols-4 gap-8 text-center"> |
|
|
<div v-for="(stat, index) in stats" :key="index" class="p-6"> |
|
|
<div class="text-4xl md:text-5xl font-bold mb-2">{{ stat.value }}</div> |
|
|
<div class="text-lg text-blue-200">{{ stat.label }}</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</section> |
|
|
|
|
|
|
|
|
<section id="pricing" class="py-20"> |
|
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
|
<div class="text-center mb-16"> |
|
|
<span class="inline-block px-3 py-1 text-sm font-semibold text-green-600 bg-green-100 rounded-full mb-4">PRICING</span> |
|
|
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">Simple, Transparent Pricing</h2> |
|
|
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Choose the plan that fits your needs. No hidden fees.</p> |
|
|
</div> |
|
|
|
|
|
<div class="flex justify-center mb-8"> |
|
|
<div class="inline-flex rounded-md shadow-sm" role="group"> |
|
|
<button @click="billingCycle = 'monthly'" :class="{'bg-blue-600 text-white': billingCycle === 'monthly', 'bg-white text-gray-700': billingCycle !== 'monthly'}" class="px-6 py-3 text-sm font-medium rounded-l-lg border border-gray-200 focus:z-10 focus:ring-2 focus:ring-blue-500"> |
|
|
Monthly Billing |
|
|
</button> |
|
|
<button @click="billingCycle = 'yearly'" :class="{'bg-blue-600 text-white': billingCycle === 'yearly', 'bg-white text-gray-700': billingCycle !== 'yearly'}" class="px-6 py-3 text-sm font-medium rounded-r-lg border border-gray-200 focus:z-10 focus:ring-2 focus:ring-blue-500"> |
|
|
Yearly Billing (Save 20%) |
|
|
</button> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<div class="grid md:grid-cols-3 gap-8"> |
|
|
<div v-for="(plan, index) in pricingPlans" :key="index" :class="{'border-2 border-blue-500 transform scale-105': plan.popular}" class="bg-white rounded-xl shadow-md overflow-hidden border border-gray-200 transition duration-300 hover:shadow-lg"> |
|
|
<div v-if="plan.popular" class="bg-blue-500 text-white text-xs font-bold px-4 py-1 text-center"> |
|
|
MOST POPULAR |
|
|
</div> |
|
|
<div class="p-8"> |
|
|
<h3 class="text-xl font-bold text-gray-900 mb-2">{{ plan.name }}</h3> |
|
|
<p class="text-gray-600 mb-6">{{ plan.description }}</p> |
|
|
<div class="mb-6"> |
|
|
<span class="text-4xl font-bold text-gray-900">${{ billingCycle === 'monthly' ? plan.price.monthly : plan.price.yearly }}</span> |
|
|
<span class="text-gray-600">/{{ billingCycle === 'monthly' ? 'mo' : 'yr' }}</span> |
|
|
</div> |
|
|
<button @click="showModal = true" :class="{'bg-blue-600 hover:bg-blue-700': plan.popular, 'bg-gray-800 hover:bg-gray-900': !plan.popular}" class="w-full text-white font-medium py-3 px-6 rounded-lg transition duration-300"> |
|
|
Get Started |
|
|
</button> |
|
|
</div> |
|
|
<div class="border-t border-gray-200 px-8 py-6"> |
|
|
<h4 class="text-sm font-semibold text-gray-900 uppercase tracking-wide mb-4">What's included</h4> |
|
|
<ul class="space-y-3"> |
|
|
<li v-for="(feature, i) in plan.features" :key="i" class="flex items-start"> |
|
|
<i class="fas fa-check text-green-500 mt-1 mr-2"></i> |
|
|
<span class="text-gray-700">{{ feature }}</span> |
|
|
</li> |
|
|
</ul> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<div class="mt-12 text-center"> |
|
|
<p class="text-gray-600 mb-4">Need something custom?</p> |
|
|
<a href="#contact" class="inline-flex items-center font-medium text-blue-600 hover:text-blue-800"> |
|
|
Contact our sales team <i class="fas fa-arrow-right ml-2"></i> |
|
|
</a> |
|
|
</div> |
|
|
</div> |
|
|
</section> |
|
|
|
|
|
|
|
|
<section class="py-20 bg-gray-50"> |
|
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
|
<div class="text-center mb-16"> |
|
|
<span class="inline-block px-3 py-1 text-sm font-semibold text-orange-600 bg-orange-100 rounded-full mb-4">TESTIMONIALS</span> |
|
|
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">Trusted by Thousands of Businesses</h2> |
|
|
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Don't just take our word for it. Here's what our customers say.</p> |
|
|
</div> |
|
|
|
|
|
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8"> |
|
|
<div v-for="(testimonial, index) in testimonials" :key="index" class="bg-white p-8 rounded-xl shadow-sm border border-gray-200"> |
|
|
<div class="flex items-center mb-4"> |
|
|
<div class="flex -space-x-2"> |
|
|
<img class="inline-block h-10 w-10 rounded-full ring-2 ring-white" :src="testimonial.avatar" :alt="testimonial.name"> |
|
|
</div> |
|
|
<div class="ml-4"> |
|
|
<h4 class="font-bold text-gray-900">{{ testimonial.name }}</h4> |
|
|
<p class="text-gray-600 text-sm">{{ testimonial.position }}</p> |
|
|
</div> |
|
|
</div> |
|
|
<p class="text-gray-700 mb-6">"{{ testimonial.quote }}"</p> |
|
|
<div class="flex items-center"> |
|
|
<div class="flex text-yellow-400"> |
|
|
<i v-for="star in 5" :key="star" :class="{'text-yellow-400': star <= testimonial.rating, 'text-gray-300': star > testimonial.rating}" class="fas fa-star"></i> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</section> |
|
|
|
|
|
|
|
|
<section class="py-20 bg-gradient-to-r from-indigo-800 to-blue-900 text-white"> |
|
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center"> |
|
|
<h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Transform Your Cloud Infrastructure?</h2> |
|
|
<p class="text-xl text-blue-200 max-w-3xl mx-auto mb-8">Join thousands of businesses that trust WytSky for their cloud computing needs.</p> |
|
|
<div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4"> |
|
|
<button @click="showModal = true" class="bg-white text-blue-800 hover:bg-gray-100 px-8 py-4 rounded-lg text-lg font-semibold transition duration-300 transform hover:scale-105"> |
|
|
Start Free Trial |
|
|
</button> |
|
|
<button class="bg-transparent border-2 border-white text-white hover:bg-white/10 px-8 py-4 rounded-lg text-lg font-semibold transition duration-300"> |
|
|
Contact Sales |
|
|
</button> |
|
|
</div> |
|
|
</div> |
|
|
</section> |
|
|
|
|
|
|
|
|
<footer class="bg-gray-900 text-white pt-20 pb-12"> |
|
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
|
<div class="grid grid-cols-2 md:grid-cols-4 lg:grid-cols-5 gap-8"> |
|
|
<div class="col-span-2"> |
|
|
<a href="#" class="flex items-center mb-6"> |
|
|
<span class="text-2xl font-bold gradient-text">WytSky</span> |
|
|
</a> |
|
|
<p class="text-gray-400 mb-6">The next generation cloud computing platform for businesses of all sizes.</p> |
|
|
<div class="flex space-x-4"> |
|
|
<a href="#" class="text-gray-400 hover:text-white transition"> |
|
|
<i class="fab fa-twitter text-xl"></i> |
|
|
</a> |
|
|
<a href="#" class="text-gray-400 hover:text-white transition"> |
|
|
<i class="fab fa-facebook text-xl"></i> |
|
|
</a> |
|
|
<a href="#" class="text-gray-400 hover:text-white transition"> |
|
|
<i class="fab fa-linkedin text-xl"></i> |
|
|
</a> |
|
|
<a href="#" class="text-gray-400 hover:text-white transition"> |
|
|
<i class="fab fa-github text-xl"></i> |
|
|
</a> |
|
|
</div> |
|
|
</div> |
|
|
<div> |
|
|
<h3 class="text-sm font-semibold text-gray-200 uppercase tracking-wider mb-4">Product</h3> |
|
|
<ul class="space-y-3"> |
|
|
<li><a href="#" class="text-gray-400 hover:text-white transition">Features</a></li> |
|
|
<li><a href="#" class="text-gray-400 hover:text-white transition">Pricing</a></li> |
|
|
<li><a href="#" class="text-gray-400 hover:text-white transition">Solutions</a></li> |
|
|
<li><a href="#" class="text-gray-400 hover:text-white transition">Updates</a></li> |
|
|
</ul> |
|
|
</div> |
|
|
<div> |
|
|
<h3 class="text-sm font-semibold text-gray-200 uppercase tracking-wider mb-4">Company</h3> |
|
|
<ul class="space-y-3"> |
|
|
<li><a href="#" class="text-gray-400 hover:text-white transition">About Us</a></li> |
|
|
<li><a href="#" class="text-gray-400 hover:text-white transition">Careers</a></li> |
|
|
<li><a href="#" class="text-gray-400 hover:text-white transition">Press</a></li> |
|
|
<li><a href="#" class="text-gray-400 hover:text-white transition">Blog</a></li> |
|
|
</ul> |
|
|
</div> |
|
|
<div> |
|
|
<h3 class="text-sm font-semibold text-gray-200 uppercase tracking-wider mb-4">Resources</h3> |
|
|
<ul class="space-y-3"> |
|
|
<li><a href="#" class="text-gray-400 hover:text-white transition">Documentation</a></li> |
|
|
<li><a href="#" class="text-gray-400 hover:text-white transition">Community</a></li> |
|
|
<li><a href="#" class="text-gray-400 hover:text-white transition">Webinars</a></li> |
|
|
<li><a href="#" class="text-gray-400 hover:text-white transition">Support</a></li> |
|
|
</ul> |
|
|
</div> |
|
|
</div> |
|
|
<div class="mt-12 pt-8 border-t border-gray-800 flex flex-col md:flex-row justify-between items-center"> |
|
|
<p class="text-gray-400 text-sm">© 2023 WytSky Technologies. All rights reserved.</p> |
|
|
<div class="flex space-x-6 mt-4 md:mt-0"> |
|
|
<a href="#" class="text-gray-400 hover:text-white text-sm">Privacy Policy</a> |
|
|
<a href="#" class="text-gray-400 hover:text-white text-sm">Terms of Service</a> |
|
|
<a href="#" class="text-gray-400 hover:text-white text-sm">Cookie Policy</a> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</footer> |
|
|
|
|
|
|
|
|
<div v-if="showModal" class="fixed inset-0 z-50 overflow-y-auto"> |
|
|
<div class="flex items-center justify-center min-h-screen pt-4 px-4 pb-20 text-center sm:block sm:p-0"> |
|
|
<div class="fixed inset-0 transition-opacity" aria-hidden="true"> |
|
|
<div class="absolute inset-0 bg-gray-500 opacity-75" @click="showModal = false"></div> |
|
|
</div> |
|
|
<span class="hidden sm:inline-block sm:align-middle sm:h-screen" aria-hidden="true">​</span> |
|
|
<div class="inline-block align-bottom bg-white rounded-lg text-left overflow-hidden shadow-xl transform transition-all sm:my-8 sm:align-middle sm:max-w-lg sm:w-full"> |
|
|
<div class="bg-white px-4 pt-5 pb-4 sm:p-6 sm:pb-4"> |
|
|
<div class="sm:flex sm:items-start"> |
|
|
<div class="mt-3 text-center sm:mt-0 sm:ml-4 sm:text-left w-full"> |
|
|
<div class="flex justify-between items-center mb-4"> |
|
|
<h3 class="text-lg leading-6 font-medium text-gray-900" id="modal-title"> |
|
|
Start Your Free Trial |
|
|
</h3> |
|
|
<button @click="showModal = false" class="text-gray-400 hover:text-gray-500 focus:outline-none"> |
|
|
<i class="fas fa-times"></i> |
|
|
</button> |
|
|
</div> |
|
|
<div class="mt-2"> |
|
|
<form class="space-y-4"> |
|
|
<div> |
|
|
<label for="name" class="block text-sm font-medium text-gray-700">Full Name</label> |
|
|
<input type="text" id="name" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500"> |
|
|
</div> |
|
|
<div> |
|
|
<label for="email" class="block text-sm font-medium text-gray-700">Email Address</label> |
|
|
<input type="email" id="email" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500"> |
|
|
</div> |
|
|
<div> |
|
|
<label for="company" class="block text-sm font-medium text-gray-700">Company Name</label> |
|
|
<input type="text" id="company" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500"> |
|
|
</div> |
|
|
<div> |
|
|
<label for="plan" class="block text-sm font-medium text-gray-700">Select Plan</label> |
|
|
<select id="plan" class="mt-1 block w-full border border-gray-300 rounded-md shadow-sm py-2 px-3 focus:outline-none focus:ring-blue-500 focus:border-blue-500"> |
|
|
<option>Starter</option> |
|
|
<option>Professional</option> |
|
|
<option>Enterprise</option> |
|
|
</select> |
|
|
</div> |
|
|
<div class="flex items-center"> |
|
|
<input id="terms" type="checkbox" class="h-4 w-4 text-blue-600 focus:ring-blue-500 border-gray-300 rounded"> |
|
|
<label for="terms" class="ml-2 block text-sm text-gray-700"> |
|
|
I agree to the <a href="#" class="text-blue-600 hover:text-blue-500">Terms of Service</a> and <a href="#" class="text-blue-600 hover:text-blue-500">Privacy Policy</a> |
|
|
</label> |
|
|
</div> |
|
|
</form> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
<div class="bg-gray-50 px-4 py-3 sm:px-6 sm:flex sm:flex-row-reverse"> |
|
|
<button type="button" class="w-full inline-flex justify-center rounded-md border border-transparent shadow-sm px-4 py-2 bg-blue-600 text-base font-medium text-white hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500 sm:ml-3 sm:w-auto sm:text-sm"> |
|
|
Start Free Trial |
|
|
</button> |
|
|
<button @click="showModal = false" type="button" class="mt-3 w-full inline-flex justify-center rounded-md border border-gray-300 shadow-sm px-4 py-2 bg-white text-base font-medium text-gray-700 hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500 sm:mt-0 sm:ml-3 sm:w-auto sm:text-sm"> |
|
|
Cancel |
|
|
</button> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<script> |
|
|
const { createApp, ref } = Vue; |
|
|
|
|
|
createApp({ |
|
|
setup() { |
|
|
const mobileMenuOpen = ref(false); |
|
|
const showModal = ref(false); |
|
|
const billingCycle = ref('monthly'); |
|
|
|
|
|
const features = ref([ |
|
|
{ |
|
|
icon: 'fas fa-brain', |
|
|
title: 'Large Language Models', |
|
|
description: 'State-of-the-art models for text generation and understanding.' |
|
|
}, |
|
|
{ |
|
|
icon: 'fas fa-comments', |
|
|
title: 'Conversational AI', |
|
|
description: 'Build chatbots and virtual assistants that understand context.' |
|
|
}, |
|
|
{ |
|
|
icon: 'fas fa-code', |
|
|
title: 'Code Generation', |
|
|
description: 'Generate and complete code in multiple programming languages.' |
|
|
}, |
|
|
{ |
|
|
icon: 'fas fa-image', |
|
|
title: 'Image Generation', |
|
|
description: 'Create stunning images from text descriptions.' |
|
|
}, |
|
|
{ |
|
|
icon: 'fas fa-language', |
|
|
title: 'Multilingual Support', |
|
|
description: 'Support for dozens of languages out of the box.' |
|
|
}, |
|
|
{ |
|
|
icon: 'fas fa-cog', |
|
|
title: 'Fine-tuning', |
|
|
description: 'Customize models for your specific use case.' |
|
|
} |
|
|
]); |
|
|
|
|
|
const solutions = ref([ |
|
|
{ |
|
|
title: 'Cloud Migration', |
|
|
description: 'Seamlessly move your workloads to WytSky with our proven migration framework.', |
|
|
benefits: [ |
|
|
'Zero downtime migration', |
|
|
'Cost optimization analysis', |
|
|
'Performance benchmarking', |
|
|
'Post-migration support' |
|
|
], |
|
|
gradient: 'from-blue-500 to-indigo-600', |
|
|
image: 'https://images.unsplash.com/photo-1558494949-ef010cbdcc31?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1374&q=80' |
|
|
}, |
|
|
{ |
|
|
title: 'Hybrid Cloud', |
|
|
description: 'Bridge your on-premises infrastructure with our public cloud services.', |
|
|
benefits: [ |
|
|
'Consistent management interface', |
|
|
'Secure connectivity options', |
|
|
'Flexible workload placement', |
|
|
'Unified monitoring' |
|
|
], |
|
|
gradient: 'from-purple-500 to-pink-600', |
|
|
image: 'https://images.unsplash.com/photo-1639762681057-408e52192e55?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1332&q=80' |
|
|
} |
|
|
]); |
|
|
|
|
|
const stats = ref([ |
|
|
{ value: '99.99%', label: 'Uptime SLA' }, |
|
|
{ value: '40+', label: 'Global Regions' }, |
|
|
{ value: '10K+', label: 'Customers' }, |
|
|
{ value: '24/7', label: 'Support' } |
|
|
]); |
|
|
|
|
|
const pricingPlans = ref([ |
|
|
{ |
|
|
name: 'Starter', |
|
|
description: 'Perfect for small businesses and startups', |
|
|
price: { monthly: 29, yearly: 278 }, |
|
|
features: [ |
|
|
'2 vCPU Cores', |
|
|
'8GB Memory', |
|
|
'100GB SSD Storage', |
|
|
'1TB Outbound Data Transfer', |
|
|
'Basic Support' |
|
|
], |
|
|
popular: false |
|
|
}, |
|
|
{ |
|
|
name: 'Professional', |
|
|
description: 'For growing businesses with higher demands', |
|
|
price: { monthly: 99, yearly: 950 }, |
|
|
features: [ |
|
|
'8 vCPU Cores', |
|
|
'32GB Memory', |
|
|
'500GB SSD Storage', |
|
|
'5TB Outbound Data Transfer', |
|
|
'Priority Support', |
|
|
'Dedicated IP' |
|
|
], |
|
|
popular: true |
|
|
}, |
|
|
{ |
|
|
name: 'Enterprise', |
|
|
description: 'Custom solutions for large-scale deployments', |
|
|
price: { monthly: 299, yearly: 2870 }, |
|
|
features: [ |
|
|
'16+ vCPU Cores', |
|
|
'64GB+ Memory', |
|
|
'2TB+ SSD Storage', |
|
|
'Unlimited Data Transfer', |
|
|
'24/7 Premium Support', |
|
|
'Dedicated Account Manager', |
|
|
'SLA Guarantee' |
|
|
], |
|
|
popular: false |
|
|
} |
|
|
]); |
|
|
|
|
|
const testimonials = ref([ |
|
|
{ |
|
|
name: 'Sarah Johnson', |
|
|
position: 'CTO at TechCorp', |
|
|
quote: 'WytSky has transformed our infrastructure. The performance is unmatched and their support team is phenomenal.', |
|
|
rating: 5, |
|
|
avatar: 'https://randomuser.me/api/portraits/women/44.jpg' |
|
|
}, |
|
|
{ |
|
|
name: 'Michael Chen', |
|
|
position: 'DevOps Lead at InnoSoft', |
|
|
quote: 'Migrating to WytSky was seamless. The documentation is excellent and the platform just works.', |
|
|
rating: 5, |
|
|
avatar: 'https://randomuser.me/api/portraits/men/32.jpg' |
|
|
}, |
|
|
{ |
|
|
name: 'Emma Rodriguez', |
|
|
position: 'Director of Engineering at DataFlow', |
|
|
quote: 'The cost savings compared to other cloud providers allowed us to invest more in product development.', |
|
|
rating: 4, |
|
|
avatar: 'https://randomuser.me/api/portraits/women/68.jpg' |
|
|
} |
|
|
]); |
|
|
|
|
|
return { |
|
|
mobileMenuOpen, |
|
|
showModal, |
|
|
billingCycle, |
|
|
features, |
|
|
solutions, |
|
|
stats, |
|
|
pricingPlans, |
|
|
testimonials |
|
|
}; |
|
|
} |
|
|
}).mount('#app'); |
|
|
</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=Saskw2010/wytsky365" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
|
|
</html> |