File size: 11,174 Bytes
6d08076
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!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>