Crossberry commited on
Commit
4985c00
·
verified ·
1 Parent(s): d60d903

Redesign my website

Browse files
Files changed (2) hide show
  1. README.md +8 -5
  2. index.html +517 -18
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- title: Xtractobot Ai Automation Wizards
3
- emoji: 👁
4
- colorFrom: blue
5
- colorTo: red
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
1
  ---
2
+ title: XtractoBot - AI Automation Wizards
3
+ colorFrom: green
4
+ colorTo: gray
5
+ emoji: 🐳
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite-v3
10
  ---
11
 
12
+ # Welcome to your new DeepSite project!
13
+ This project was created with [DeepSite](https://deepsite.hf.co).
index.html CHANGED
@@ -1,19 +1,518 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  </html>
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>XtractoBot - AI Automation Agency</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <script src="https://unpkg.com/feather-icons"></script>
9
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
10
+ <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
11
+ <style>
12
+ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
13
+ body {
14
+ font-family: 'Inter', sans-serif;
15
+ }
16
+ .gradient-text {
17
+ background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
18
+ -webkit-background-clip: text;
19
+ background-clip: text;
20
+ color: transparent;
21
+ }
22
+ .globe-bg {
23
+ position: absolute;
24
+ top: 0;
25
+ left: 0;
26
+ width: 100%;
27
+ height: 100%;
28
+ z-index: -1;
29
+ opacity: 0.3;
30
+ }
31
+ </style>
32
+ </head>
33
+ <body class="bg-gray-50">
34
+ <!-- Vanta.js Globe Background -->
35
+ <div id="globe-bg" class="globe-bg"></div>
36
+
37
+ <!-- Navigation -->
38
+ <nav class="py-6 px-4 sm:px-6 lg:px-8 bg-white/80 backdrop-blur-md sticky top-0 z-50 shadow-sm">
39
+ <div class="max-w-7xl mx-auto flex justify-between items-center">
40
+ <a href="#" class="text-2xl font-bold gradient-text">XtractoBot</a>
41
+ <div class="hidden md:flex space-x-8">
42
+ <a href="#" class="text-gray-700 hover:text-indigo-600 font-medium">Home</a>
43
+ <a href="#services" class="text-gray-700 hover:text-indigo-600 font-medium">Services</a>
44
+ <a href="#process" class="text-gray-700 hover:text-indigo-600 font-medium">Process</a>
45
+ <a href="#pricing" class="text-gray-700 hover:text-indigo-600 font-medium">Pricing</a>
46
+ <a href="#contact" class="text-gray-700 hover:text-indigo-600 font-medium">Contact</a>
47
+ </div>
48
+ <a href="#" class="hidden md:block bg-indigo-600 text-white px-6 py-2 rounded-lg font-medium hover:bg-indigo-700 transition">Book a Call</a>
49
+ <button class="md:hidden">
50
+ <i data-feather="menu"></i>
51
+ </button>
52
+ </div>
53
+ </nav>
54
+
55
+ <!-- Hero Section -->
56
+ <section class="relative py-20 px-4 sm:px-6 lg:px-8">
57
+ <div class="max-w-7xl mx-auto">
58
+ <div class="grid md:grid-cols-2 gap-12 items-center">
59
+ <div>
60
+ <span class="inline-block bg-indigo-100 text-indigo-600 px-3 py-1 rounded-full text-sm font-medium mb-4">New</span>
61
+ <h1 class="text-4xl md:text-5xl lg:text-6xl font-bold text-gray-900 leading-tight mb-6">
62
+ Automated <span class="gradient-text">Lead Generation</span>
63
+ </h1>
64
+ <p class="text-xl text-gray-600 mb-8 max-w-lg">
65
+ Intelligent Automation for Modern Businesses. XtractoBot brings AI automation to your fingertips & streamlines tasks.
66
+ </p>
67
+ <div class="flex flex-wrap gap-4">
68
+ <a href="#contact" class="bg-indigo-600 text-white px-6 py-3 rounded-lg font-medium hover:bg-indigo-700 transition">Get in touch</a>
69
+ <a href="#services" class="border border-gray-300 text-gray-700 px-6 py-3 rounded-lg font-medium hover:bg-gray-50 transition">View services</a>
70
+ </div>
71
+ </div>
72
+ <div class="relative">
73
+ <div class="bg-indigo-100 rounded-2xl p-8 shadow-xl">
74
+ <div class="bg-white rounded-lg p-6 shadow-sm">
75
+ <h3 class="text-lg font-semibold text-gray-800 mb-4">What can I help with?</h3>
76
+ <p class="text-gray-600 mb-4">Whether you want help in customer handling or make changes in your system just give me command</p>
77
+ <div class="grid grid-cols-2 gap-3">
78
+ <span class="bg-indigo-50 text-indigo-600 py-2 px-3 rounded-md text-sm font-medium">Generate invoice</span>
79
+ <span class="bg-indigo-50 text-indigo-600 py-2 px-3 rounded-md text-sm font-medium">Add document</span>
80
+ <span class="bg-indigo-50 text-indigo-600 py-2 px-3 rounded-md text-sm font-medium">Analyze</span>
81
+ <span class="bg-indigo-50 text-indigo-600 py-2 px-3 rounded-md text-sm font-medium">Generate Image</span>
82
+ <span class="bg-indigo-50 text-indigo-600 py-2 px-3 rounded-md text-sm font-medium">research</span>
83
+ <span class="bg-indigo-50 text-indigo-600 py-2 px-3 rounded-md text-sm font-medium">E-mail Sending</span>
84
+ </div>
85
+ </div>
86
+ </div>
87
+ </div>
88
+ </div>
89
+ </div>
90
+ </section>
91
+
92
+ <!-- Trusted By -->
93
+ <section class="py-12 px-4 sm:px-6 lg:px-8 bg-white">
94
+ <div class="max-w-7xl mx-auto">
95
+ <p class="text-center text-gray-500 mb-8">Over 50+ businesses trust us</p>
96
+ <div class="grid grid-cols-2 md:grid-cols-4 lg:grid-cols-6 gap-8">
97
+ <!-- Placeholder for client logos -->
98
+ <div class="flex justify-center">
99
+ <div class="h-16 w-16 bg-gray-200 rounded-full"></div>
100
+ </div>
101
+ <div class="flex justify-center">
102
+ <div class="h-16 w-16 bg-gray-200 rounded-full"></div>
103
+ </div>
104
+ <div class="flex justify-center">
105
+ <div class="h-16 w-16 bg-gray-200 rounded-full"></div>
106
+ </div>
107
+ <div class="flex justify-center">
108
+ <div class="h-16 w-16 bg-gray-200 rounded-full"></div>
109
+ </div>
110
+ <div class="flex justify-center">
111
+ <div class="h-16 w-16 bg-gray-200 rounded-full"></div>
112
+ </div>
113
+ <div class="flex justify-center">
114
+ <div class="h-16 w-16 bg-gray-200 rounded-full"></div>
115
+ </div>
116
+ </div>
117
+ </div>
118
+ </section>
119
+
120
+ <!-- Services Section -->
121
+ <section id="services" class="py-20 px-4 sm:px-6 lg:px-8 bg-gray-50">
122
+ <div class="max-w-7xl mx-auto">
123
+ <div class="text-center mb-16">
124
+ <h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">Our Services</h2>
125
+ <p class="text-xl text-gray-600 max-w-3xl mx-auto">
126
+ AI Solutions That Take Your Business to the Next Level
127
+ </p>
128
+ </div>
129
+
130
+ <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
131
+ <!-- Service 1 -->
132
+ <div class="bg-white rounded-xl shadow-md overflow-hidden p-6 hover:shadow-lg transition">
133
+ <div class="bg-indigo-100 w-16 h-16 rounded-lg flex items-center justify-center mb-6">
134
+ <i data-feather="cpu" class="text-indigo-600 w-8 h-8"></i>
135
+ </div>
136
+ <h3 class="text-xl font-bold text-gray-900 mb-3">Workflow Automation</h3>
137
+ <p class="text-gray-600 mb-4">
138
+ Automate repetitive tasks like data entry, reporting, and approval chains saving time and cutting down errors.
139
+ </p>
140
+ <div class="flex flex-wrap gap-2">
141
+ <span class="bg-indigo-50 text-indigo-600 py-1 px-3 rounded-full text-xs font-medium">Internal Task Bots</span>
142
+ <span class="bg-indigo-50 text-indigo-600 py-1 px-3 rounded-full text-xs font-medium">100+ Automations</span>
143
+ </div>
144
+ </div>
145
+
146
+ <!-- Service 2 -->
147
+ <div class="bg-white rounded-xl shadow-md overflow-hidden p-6 hover:shadow-lg transition">
148
+ <div class="bg-indigo-100 w-16 h-16 rounded-lg flex items-center justify-center mb-6">
149
+ <i data-feather="user" class="text-indigo-600 w-8 h-8"></i>
150
+ </div>
151
+ <h3 class="text-xl font-bold text-gray-900 mb-3">AI Assistant</h3>
152
+ <p class="text-gray-600 mb-4">
153
+ From managing calendars to drafting emails and summarizing meetings, our AI assistants work around the clock.
154
+ </p>
155
+ <div class="flex flex-wrap gap-2">
156
+ <span class="bg-indigo-50 text-indigo-600 py-1 px-3 rounded-full text-xs font-medium">Summaries</span>
157
+ <span class="bg-indigo-50 text-indigo-600 py-1 px-3 rounded-full text-xs font-medium">Scheduling</span>
158
+ <span class="bg-indigo-50 text-indigo-600 py-1 px-3 rounded-full text-xs font-medium">Many more</span>
159
+ </div>
160
+ </div>
161
+
162
+ <!-- Service 3 -->
163
+ <div class="bg-white rounded-xl shadow-md overflow-hidden p-6 hover:shadow-lg transition">
164
+ <div class="bg-indigo-100 w-16 h-16 rounded-lg flex items-center justify-center mb-6">
165
+ <i data-feather="trending-up" class="text-indigo-600 w-8 h-8"></i>
166
+ </div>
167
+ <h3 class="text-xl font-bold text-gray-900 mb-3">Sales & Marketing</h3>
168
+ <p class="text-gray-600 mb-4">
169
+ AI tools for lead generation, personalized outreach, and automated content creation that scales your sales efforts.
170
+ </p>
171
+ <div class="flex flex-wrap gap-2">
172
+ <span class="bg-indigo-50 text-indigo-600 py-1 px-3 rounded-full text-xs font-medium">Leads</span>
173
+ <span class="bg-indigo-50 text-indigo-600 py-1 px-3 rounded-full text-xs font-medium">Content</span>
174
+ <span class="bg-indigo-50 text-indigo-600 py-1 px-3 rounded-full text-xs font-medium">Social post</span>
175
+ </div>
176
+ </div>
177
+ </div>
178
+ </div>
179
+ </section>
180
+
181
+ <!-- Process Section -->
182
+ <section id="process" class="py-20 px-4 sm:px-6 lg:px-8 bg-white">
183
+ <div class="max-w-7xl mx-auto">
184
+ <div class="text-center mb-16">
185
+ <h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">Our Process</h2>
186
+ <p class="text-xl text-gray-600 max-w-3xl mx-auto">
187
+ Simple, Smart, and Scalable Process to Automate Your Business
188
+ </p>
189
+ </div>
190
+
191
+ <div class="grid md:grid-cols-4 gap-8">
192
+ <!-- Step 1 -->
193
+ <div class="bg-gray-50 rounded-xl p-6">
194
+ <div class="bg-indigo-100 text-indigo-600 w-12 h-12 rounded-lg flex items-center justify-center mb-4">
195
+ <span class="font-bold">1</span>
196
+ </div>
197
+ <h3 class="text-lg font-bold text-gray-900 mb-3">Smart Analyzing</h3>
198
+ <p class="text-gray-600 mb-4">
199
+ We assess your needs and identify AI solutions to streamline workflows and improve efficiency.
200
+ </p>
201
+ <div class="space-y-2">
202
+ <div class="flex items-center">
203
+ <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i>
204
+ <span class="text-sm text-gray-600">Analyzing current workflow</span>
205
+ </div>
206
+ <div class="flex items-center">
207
+ <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i>
208
+ <span class="text-sm text-gray-600">System check</span>
209
+ </div>
210
+ <div class="flex items-center">
211
+ <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i>
212
+ <span class="text-sm text-gray-600">Process check</span>
213
+ </div>
214
+ </div>
215
+ </div>
216
+
217
+ <!-- Step 2 -->
218
+ <div class="bg-gray-50 rounded-xl p-6">
219
+ <div class="bg-indigo-100 text-indigo-600 w-12 h-12 rounded-lg flex items-center justify-center mb-4">
220
+ <span class="font-bold">2</span>
221
+ </div>
222
+ <h3 class="text-lg font-bold text-gray-900 mb-3">AI Development</h3>
223
+ <p class="text-gray-600 mb-4">
224
+ Our team builds intelligent automation systems tailored to your business processes.
225
+ </p>
226
+ <div class="bg-gray-100 p-3 rounded-md overflow-x-auto">
227
+ <code class="text-xs text-gray-800">
228
+ class AutomationTrigger:<br>
229
+ &nbsp;&nbsp;def __init__(self, threshold):<br>
230
+ &nbsp;&nbsp;&nbsp;&nbsp;self.threshold = threshold<br>
231
+ &nbsp;&nbsp;&nbsp;&nbsp;self.status = "inactive"<br>
232
+ &nbsp;&nbsp;def check_trigger(self, value):<br>
233
+ &nbsp;&nbsp;&nbsp;&nbsp;if value > self.threshold:<br>
234
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;self.status = "active"<br>
235
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return "Automation triggered!"<br>
236
+ &nbsp;&nbsp;&nbsp;&nbsp;else:<br>
237
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;return "No action taken."
238
+ </code>
239
+ </div>
240
+ </div>
241
+
242
+ <!-- Step 3 -->
243
+ <div class="bg-gray-50 rounded-xl p-6">
244
+ <div class="bg-indigo-100 text-indigo-600 w-12 h-12 rounded-lg flex items-center justify-center mb-4">
245
+ <span class="font-bold">3</span>
246
+ </div>
247
+ <h3 class="text-lg font-bold text-gray-900 mb-3">Seamless Integration</h3>
248
+ <p class="text-gray-600 mb-4">
249
+ We smoothly integrate AI solutions into your existing infrastructure with minimal disruption.
250
+ </p>
251
+ <div class="flex justify-between items-center">
252
+ <div class="text-center">
253
+ <div class="bg-indigo-100 w-10 h-10 rounded-lg flex items-center justify-center mx-auto mb-2">
254
+ <i data-feather="code" class="text-indigo-600 w-4 h-4"></i>
255
+ </div>
256
+ <span class="text-xs text-gray-600">Your stack</span>
257
+ </div>
258
+ <i data-feather="arrow-right" class="text-gray-400 mx-2"></i>
259
+ <div class="text-center">
260
+ <div class="bg-indigo-100 w-10 h-10 rounded-lg flex items-center justify-center mx-auto mb-2">
261
+ <i data-feather="cpu" class="text-indigo-600 w-4 h-4"></i>
262
+ </div>
263
+ <span class="text-xs text-gray-600">Our solution</span>
264
+ </div>
265
+ </div>
266
+ </div>
267
+
268
+ <!-- Step 4 -->
269
+ <div class="bg-gray-50 rounded-xl p-6">
270
+ <div class="bg-indigo-100 text-indigo-600 w-12 h-12 rounded-lg flex items-center justify-center mb-4">
271
+ <span class="font-bold">4</span>
272
+ </div>
273
+ <h3 class="text-lg font-bold text-gray-900 mb-3">Continuous Optimization</h3>
274
+ <p class="text-gray-600 mb-4">
275
+ We refine performance, analyze insights, and enhance automation for long-term growth.
276
+ </p>
277
+ <div class="space-y-3">
278
+ <div>
279
+ <div class="flex justify-between text-sm text-gray-600 mb-1">
280
+ <span>Chatbot system</span>
281
+ <span>20% ↑</span>
282
+ </div>
283
+ <div class="w-full bg-gray-200 rounded-full h-1.5">
284
+ <div class="bg-indigo-600 h-1.5 rounded-full" style="width: 70%"></div>
285
+ </div>
286
+ </div>
287
+ <div>
288
+ <div class="flex justify-between text-sm text-gray-600 mb-1">
289
+ <span>Workflow system</span>
290
+ <span>Update available</span>
291
+ </div>
292
+ <div class="w-full bg-gray-200 rounded-full h-1.5">
293
+ <div class="bg-indigo-600 h-1.5 rounded-full" style="width: 90%"></div>
294
+ </div>
295
+ </div>
296
+ </div>
297
+ </div>
298
+ </div>
299
+ </div>
300
+ </section>
301
+
302
+ <!-- Pricing Section -->
303
+ <section id="pricing" class="py-20 px-4 sm:px-6 lg:px-8 bg-gray-50">
304
+ <div class="max-w-7xl mx-auto">
305
+ <div class="text-center mb-16">
306
+ <h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">Pricing</h2>
307
+ <p class="text-xl text-gray-600 max-w-3xl mx-auto">
308
+ The Best AI Automation, at the Right Price
309
+ </p>
310
+ </div>
311
+
312
+ <div class="flex justify-center mb-8">
313
+ <div class="bg-white p-1 rounded-lg inline-flex">
314
+ <button class="px-6 py-2 rounded-md font-medium text-indigo-600">Monthly</button>
315
+ <button class="px-6 py-2 rounded-md font-medium text-gray-600 bg-gray-100">Annually</button>
316
+ </div>
317
+ </div>
318
+
319
+ <div class="grid md:grid-cols-3 gap-8">
320
+ <!-- Starter Plan -->
321
+ <div class="bg-white rounded-xl shadow-md overflow-hidden hover:shadow-lg transition">
322
+ <div class="p-6">
323
+ <h3 class="text-lg font-semibold text-gray-900 mb-2">Starter</h3>
324
+ <p class="text-3xl font-bold text-gray-900 mb-4">$37<span class="text-lg font-normal text-gray-600">/month</span></p>
325
+ <p class="text-gray-600 mb-6">Perfect for small businesses starting with AI automation.</p>
326
+ <a href="#" class="block w-full bg-indigo-600 text-white text-center py-3 rounded-lg font-medium hover:bg-indigo-700 transition">Choose this plan</a>
327
+ </div>
328
+ <div class="border-t border-gray-200 p-6 bg-gray-50">
329
+ <h4 class="text-sm font-semibold text-gray-900 uppercase mb-4">What's Included:</h4>
330
+ <ul class="space-y-3">
331
+ <li class="flex items-center">
332
+ <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i>
333
+ <span class="text-gray-600">Basic workflow automation</span>
334
+ </li>
335
+ <li class="flex items-center">
336
+ <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i>
337
+ <span class="text-gray-600">AI-powered personal assistant</span>
338
+ </li>
339
+ <li class="flex items-center">
340
+ <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i>
341
+ <span class="text-gray-600">Standard analytics & reporting</span>
342
+ </li>
343
+ <li class="flex items-center">
344
+ <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i>
345
+ <span class="text-gray-600">Email & chat support</span>
346
+ </li>
347
+ <li class="flex items-center">
348
+ <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i>
349
+ <span class="text-gray-600">Up to 3 AI integrations</span>
350
+ </li>
351
+ </ul>
352
+ </div>
353
+ </div>
354
+
355
+ <!-- Professional Plan -->
356
+ <div class="bg-white rounded-xl shadow-lg overflow-hidden border-2 border-indigo-500 relative hover:shadow-xl transition">
357
+ <div class="absolute top-0 right-0 bg-indigo-500 text-white text-xs font-bold px-2 py-1 rounded-bl-lg rounded-tr-lg">Popular</div>
358
+ <div class="p-6">
359
+ <h3 class="text-lg font-semibold text-gray-900 mb-2">Professional</h3>
360
+ <p class="text-3xl font-bold text-gray-900 mb-4">$75<span class="text-lg font-normal text-gray-600">/month</span></p>
361
+ <p class="text-gray-600 mb-6">Ideal for growing businesses needing advanced automation.</p>
362
+ <a href="#" class="block w-full bg-indigo-600 text-white text-center py-3 rounded-lg font-medium hover:bg-indigo-700 transition">Choose this plan</a>
363
+ </div>
364
+ <div class="border-t border-gray-200 p-6 bg-gray-50">
365
+ <h4 class="text-sm font-semibold text-gray-900 uppercase mb-4">What's Included:</h4>
366
+ <ul class="space-y-3">
367
+ <li class="flex items-center">
368
+ <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i>
369
+ <span class="text-gray-600">Advanced workflow automation</span>
370
+ </li>
371
+ <li class="flex items-center">
372
+ <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i>
373
+ <span class="text-gray-600">AI-driven sales & marketing tools</span>
374
+ </li>
375
+ <li class="flex items-center">
376
+ <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i>
377
+ <span class="text-gray-600">Enhanced data analytics & insights</span>
378
+ </li>
379
+ <li class="flex items-center">
380
+ <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i>
381
+ <span class="text-gray-600">Priority customer support</span>
382
+ </li>
383
+ <li class="flex items-center">
384
+ <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i>
385
+ <span class="text-gray-600">Up to 10 AI integrations</span>
386
+ </li>
387
+ </ul>
388
+ </div>
389
+ </div>
390
+
391
+ <!-- Enterprise Plan -->
392
+ <div class="bg-white rounded-xl shadow-md overflow-hidden hover:shadow-lg transition">
393
+ <div class="p-6">
394
+ <h3 class="text-lg font-semibold text-gray-900 mb-2">Enterprise</h3>
395
+ <p class="text-3xl font-bold text-gray-900 mb-4">Custom</p>
396
+ <p class="text-gray-600 mb-6">For large enterprises needing fully customized solutions.</p>
397
+ <a href="#" class="block w-full bg-gray-900 text-white text-center py-3 rounded-lg font-medium hover:bg-gray-800 transition">Schedule a call</a>
398
+ </div>
399
+ <div class="border-t border-gray-200 p-6 bg-gray-50">
400
+ <h4 class="text-sm font-semibold text-gray-900 uppercase mb-4">What's Included:</h4>
401
+ <ul class="space-y-3">
402
+ <li class="flex items-center">
403
+ <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i>
404
+ <span class="text-gray-600">Fully customizable AI automation</span>
405
+ </li>
406
+ <li class="flex items-center">
407
+ <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i>
408
+ <span class="text-gray-600">Dedicated AI business consultant</span>
409
+ </li>
410
+ <li class="flex items-center">
411
+ <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i>
412
+ <span class="text-gray-600">Enterprise-grade compliance</span>
413
+ </li>
414
+ <li class="flex items-center">
415
+ <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i>
416
+ <span class="text-gray-600">24/7 VIP support</span>
417
+ </li>
418
+ <li class="flex items-center">
419
+ <i data-feather="check" class="text-green-500 mr-2 w-4 h-4"></i>
420
+ <span class="text-gray-600">Unlimited AI integrations</span>
421
+ </li>
422
+ </ul>
423
+ </div>
424
+ </div>
425
+ </div>
426
+ </div>
427
+ </section>
428
+
429
+ <!-- CTA Section -->
430
+ <section class="py-20 px-4 sm:px-6 lg:px-8 bg-indigo-600 text-white">
431
+ <div class="max-w-7xl mx-auto text-center">
432
+ <h2 class="text-3xl md:text-4xl font-bold mb-6">Let AI do the Work so you can Scale Faster</h2>
433
+ <p class="text-xl mb-8 max-w-3xl mx-auto opacity-90">
434
+ Book a Call Today and Start Automating Your Business Processes
435
+ </p>
436
+ <a href="#" class="inline-block bg-white text-indigo-600 px-8 py-3 rounded-lg font-bold hover:bg-gray-100 transition">Book a free call</a>
437
+ </div>
438
+ </section>
439
+
440
+ <!-- Footer -->
441
+ <footer class="bg-gray-900 text-gray-400 py-16 px-4 sm:px-6 lg:px-8">
442
+ <div class="max-w-7xl mx-auto">
443
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-12">
444
+ <div>
445
+ <a href="#" class="text-2xl font-bold text-white mb-4 block">XtractoBot</a>
446
+ <p class="mb-6">Automate Smarter, Optimize Faster, and Grow Stronger.</p>
447
+ <div class="flex space-x-4">
448
+ <a href="#" class="text-gray-400 hover:text-white transition">
449
+ <i data-feather="instagram"></i>
450
+ </a>
451
+ <a href="#" class="text-gray-400 hover:text-white transition">
452
+ <i data-feather="facebook"></i>
453
+ </a>
454
+ <a href="#" class="text-gray-400 hover:text-white transition">
455
+ <i data-feather="linkedin"></i>
456
+ </a>
457
+ <a href="#" class="text-gray-400 hover:text-white transition">
458
+ <i data-feather="twitter"></i>
459
+ </a>
460
+ </div>
461
+ </div>
462
+ <div>
463
+ <h3 class="text-white font-semibold mb-4">Links</h3>
464
+ <ul class="space-y-2">
465
+ <li><a href="#services" class="hover:text-white transition">Services</a></li>
466
+ <li><a href="#process" class="hover:text-white transition">Process</a></li>
467
+ <li><a href="#cases" class="hover:text-white transition">Case studies</a></li>
468
+ <li><a href="#benefits" class="hover:text-white transition">Benefits</a></li>
469
+ <li><a href="#pricing" class="hover:text-white transition">Pricing</a></li>
470
+ </ul>
471
+ </div>
472
+ <div>
473
+ <h3 class="text-white font-semibold mb-4">Pages</h3>
474
+ <ul class="space-y-2">
475
+ <li><a href="#" class="hover:text-white transition">Home</a></li>
476
+ <li><a href="#" class="hover:text-white transition">About</a></li>
477
+ <li><a href="#" class="hover:text-white transition">Blog</a></li>
478
+ <li><a href="#" class="hover:text-white transition">Contact</a></li>
479
+ </ul>
480
+ </div>
481
+ <div>
482
+ <h3 class="text-white font-semibold mb-4">Join our newsletter</h3>
483
+ <form class="mb-4">
484
+ <div class="flex">
485
+ <input type="email" placeholder="Your email" class="bg-gray-800 text-white px-4 py-2 rounded-l-lg focus:outline-none focus:ring-2 focus:ring-indigo-500 w-full">
486
+ <button type="submit" class="bg-indigo-600 text-white px-4 py-2 rounded-r-lg hover:bg-indigo-700 transition">Subscribe</button>
487
+ </div>
488
+ </form>
489
+ <p class="text-xs">
490
+ © 2023 XtractoBot. All rights reserved.<br>
491
+ Designed with ❤️ by AI Wizards
492
+ </p>
493
+ </div>
494
+ </div>
495
+ </div>
496
+ </footer>
497
+
498
+ <script>
499
+ // Initialize Vanta.js globe background
500
+ VANTA.GLOBE({
501
+ el: "#globe-bg",
502
+ mouseControls: true,
503
+ touchControls: true,
504
+ gyroControls: false,
505
+ minHeight: 200.00,
506
+ minWidth: 200.00,
507
+ scale: 1.00,
508
+ scaleMobile: 1.00,
509
+ color: 0x5b6cf9,
510
+ backgroundColor: 0xf8fafc,
511
+ size: 1.00
512
+ });
513
+
514
+ // Initialize feather icons
515
+ feather.replace();
516
+ </script>
517
+ </body>
518
  </html>