versalabs / index.html
VedetteStore's picture
Design with Claymorphism using soft, puffy UI elements that appear like clay. Use large border radius (16-20px), soft inner and outer shadows, and pastel colors. Elements should look soft and squeezable with a playful feel. Implement soft shadows both inside and outside elements to create dimension. Use gentle pastel colors like lavender, mint green, and baby blue. Avoid hard edges and sharp contrasts in favor of soft, rounded corners and gentle color transitions. The design should be unique, beautiful and detailed. the colors should work well together. create a landing page for versalabs.io - Initial Deployment
6d08076 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VersaLabs - AI Innovation Made Simple</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
background-color: #f5f7ff;
}
.clay-card {
background: rgba(255, 255, 255, 0.7);
border-radius: 24px;
box-shadow:
8px 8px 16px rgba(194, 198, 220, 0.5),
-8px -8px 16px rgba(255, 255, 255, 0.8),
inset 2px 2px 5px rgba(255, 255, 255, 0.5),
inset -3px -3px 10px rgba(194, 198, 220, 0.3);
transition: all 0.3s ease;
}
.clay-btn {
border-radius: 16px;
box-shadow:
6px 6px 12px rgba(194, 198, 220, 0.5),
-6px -6px 12px rgba(255, 255, 255, 0.8),
inset 2px 2px 4px rgba(255, 255, 255, 0.3),
inset -2px -2px 4px rgba(194, 198, 220, 0.3);
transition: all 0.3s ease;
}
.clay-btn:hover {
transform: translateY(-2px);
box-shadow:
8px 8px 16px rgba(194, 198, 220, 0.5),
-8px -8px 16px rgba(255, 255, 255, 0.8),
inset 2px 2px 4px rgba(255, 255, 255, 0.3),
inset -2px -2px 4px rgba(194, 198, 220, 0.3);
}
.clay-btn:active {
transform: translateY(1px);
box-shadow:
2px 2px 4px rgba(194, 198, 220, 0.5),
-2px -2px 4px rgba(255, 255, 255, 0.8),
inset 3px 3px 6px rgba(194, 198, 220, 0.3),
inset -3px -3px 6px rgba(255, 255, 255, 0.3);
}
.nav-item {
border-radius: 16px;
transition: all 0.3s ease;
}
.nav-item:hover {
background: rgba(255, 255, 255, 0.5);
box-shadow:
4px 4px 8px rgba(194, 198, 220, 0.3),
-4px -4px 8px rgba(255, 255, 255, 0.5);
}
.gradient-bg {
background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}
</style>
</head>
<body class="text-gray-700">
<!-- Navigation -->
<nav class="container mx-auto px-6 py-6">
<div class="flex items-center justify-between">
<div class="flex items-center space-x-2">
<div class="clay-card p-3">
<i data-feather="cpu" class="text-indigo-400"></i>
</div>
<span class="text-2xl font-bold text-indigo-400">VersaLabs</span>
</div>
<div class="hidden md:flex space-x-4">
<a href="#features" class="nav-item px-6 py-2 text-gray-600">Features</a>
<a href="#solutions" class="nav-item px-6 py-2 text-gray-600">Solutions</a>
<a href="#pricing" class="nav-item px-6 py-2 text-gray-600">Pricing</a>
<a href="#about" class="nav-item px-6 py-2 text-gray-600">About</a>
</div>
<div class="flex items-center space-x-4">
<a href="#" class="nav-item px-4 py-2 text-gray-600">Login</a>
<a href="#" class="clay-btn px-6 py-2 bg-indigo-400 text-white">Get Started</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="gradient-bg rounded-3xl mx-6 my-6 p-12">
<div class="container mx-auto">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0" data-aos="fade-right">
<h1 class="text-5xl font-bold mb-6 text-gray-800">AI Innovation <br>Made Simple</h1>
<p class="text-xl mb-8 text-gray-600">VersaLabs brings powerful AI tools to your fingertips with our intuitive platform designed for everyone.</p>
<div class="flex space-x-4">
<a href="#" class="clay-btn px-8 py-3 bg-indigo-400 text-white font-medium">Start Free Trial</a>
<a href="#" class="clay-btn px-8 py-3 bg-white text-indigo-400 font-medium">
<i data-feather="play" class="inline mr-2"></i> Watch Demo
</a>
</div>
</div>
<div class="md:w-1/2" data-aos="fade-left">
<div class="clay-card p-8">
<img src="http://static.photos/technology/640x360/42" alt="AI Dashboard" class="rounded-2xl w-full">
</div>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="container mx-auto px-6 py-16">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold mb-4 text-gray-800">Powerful Features</h2>
<p class="text-gray-600 max-w-2xl mx-auto">Discover how VersaLabs can transform your workflow with our intuitive AI tools</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="clay-card p-8" data-aos="fade-up">
<div class="clay-card p-4 w-16 h-16 flex items-center justify-center mb-6 bg-indigo-100 text-indigo-400">
<i data-feather="zap" class="w-8 h-8"></i>
</div>
<h3 class="text-xl font-bold mb-3 text-gray-800">Instant Insights</h3>
<p class="text-gray-600">Get real-time analytics and actionable recommendations powered by our advanced AI algorithms.</p>
</div>
<div class="clay-card p-8" data-aos="fade-up" data-aos-delay="100">
<div class="clay-card p-4 w-16 h-16 flex items-center justify-center mb-6 bg-pink-100 text-pink-400">
<i data-feather="layers" class="w-8 h-8"></i>
</div>
<h3 class="text-xl font-bold mb-3 text-gray-800">No-Code Builder</h3>
<p class="text-gray-600">Create custom AI workflows without writing a single line of code with our intuitive drag-and-drop interface.</p>
</div>
<div class="clay-card p-8" data-aos="fade-up" data-aos-delay="200">
<div class="clay-card p-4 w-16 h-16 flex items-center justify-center mb-6 bg-blue-100 text-blue-400">
<i data-feather="shield" class="w-8 h-8"></i>
</div>
<h3 class="text-xl font-bold mb-3 text-gray-800">Enterprise Security</h3>
<p class="text-gray-600">Your data is protected with bank-grade encryption and compliance with global security standards.</p>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="container mx-auto px-6 py-16">
<div class="clay-card p-12 text-center">
<h2 class="text-3xl font-bold mb-6 text-gray-800">Ready to Transform Your Business?</h2>
<p class="text-xl text-gray-600 mb-8 max-w-2xl mx-auto">Join thousands of companies already using VersaLabs to power their AI initiatives.</p>
<a href="#" class="clay-btn inline-block px-10 py-4 bg-indigo-400 text-white font-medium text-lg">Start Your Free Trial</a>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-50 py-12">
<div class="container mx-auto px-6">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<div class="flex items-center space-x-2 mb-6">
<div class="clay-card p-2">
<i data-feather="cpu" class="text-indigo-400"></i>
</div>
<span class="text-xl font-bold text-indigo-400">VersaLabs</span>
</div>
<p class="text-gray-600 mb-6">Making AI accessible for businesses of all sizes.</p>
<div class="flex space-x-4">
<a href="#" class="clay-card p-3 text-gray-600"><i data-feather="twitter"></i></a>
<a href="#" class="clay-card p-3 text-gray-600"><i data-feather="linkedin"></i></a>
<a href="#" class="clay-card p-3 text-gray-600"><i data-feather="github"></i></a>
</div>
</div>
<div>
<h3 class="font-bold text-lg mb-4 text-gray-800">Product</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-600 hover:text-indigo-400">Features</a></li>
<li><a href="#" class="text-gray-600 hover:text-indigo-400">Pricing</a></li>
<li><a href="#" class="text-gray-600 hover:text-indigo-400">API</a></li>
<li><a href="#" class="text-gray-600 hover:text-indigo-400">Integrations</a></li>
</ul>
</div>
<div>
<h3 class="font-bold text-lg mb-4 text-gray-800">Resources</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-600 hover:text-indigo-400">Documentation</a></li>
<li><a href="#" class="text-gray-600 hover:text-indigo-400">Guides</a></li>
<li><a href="#" class="text-gray-600 hover:text-indigo-400">Blog</a></li>
<li><a href="#" class="text-gray-600 hover:text-indigo-400">Support</a></li>
</ul>
</div>
<div>
<h3 class="font-bold text-lg mb-4 text-gray-800">Company</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-600 hover:text-indigo-400">About</a></li>
<li><a href="#" class="text-gray-600 hover:text-indigo-400">Careers</a></li>
<li><a href="#" class="text-gray-600 hover:text-indigo-400">Contact</a></li>
<li><a href="#" class="text-gray-600 hover:text-indigo-400">Legal</a></li>
</ul>
</div>
</div>
<div class="border-t border-gray-200 mt-12 pt-8 text-center text-gray-600">
<p>© 2024 VersaLabs. All rights reserved.</p>
</div>
</div>
</footer>
<script>
AOS.init({
duration: 800,
easing: 'ease-in-out',
once: true
});
document.addEventListener('DOMContentLoaded', function() {
feather.replace();
});
</script>
</body>
</html>