-
Notifications
You must be signed in to change notification settings - Fork 0
/
1725897890.860588.html
389 lines (351 loc) · 15.9 KB
/
1725897890.860588.html
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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Launch_Agent: AI-Powered Landing Page Generator</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.0.2/dist/tailwind.min.css" rel="stylesheet">
<style>
:root {
--primary-color: #4A90E2;
--secondary-color: #50E3C2;
--text-color: #333;
--background-color: #F8F9FA;
--accent-color: #FF6B6B;
}
body {
font-family: 'Poppins', sans-serif;
line-height: 1.6;
color: var(--text-color);
background-color: var(--background-color);
}
.hero-background {
background: url('https://cdn.glitch.global/6966ec4e-7e8a-4b66-a5f9-1a0f3cd5269c/hero?v=1723398806028') no-repeat center center;
background-size: cover;
height: 110vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: #fff;
position: relative;
}
.hero-background::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
}
.hero-background > div {
position: relative;
z-index: 2;
}
.text-shadow-strong {
text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}
.cta-button {
display: inline-block;
background-color: var(--accent-color);
color: #fff;
padding: 1rem 2rem;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
transition: background-color 0.3s ease;
}
.cta-button:hover {
background-color: #ff4f4f;
}
nav {
background-color: var(--background-color);
padding: 1rem 0;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
nav ul {
list-style: none;
display: flex;
justify-content: center;
align-items: center;
margin: 0;
padding: 0;
}
nav ul li {
margin: 0 1.5rem;
}
nav ul li a {
color: var(--text-color);
text-decoration: none;
font-weight: 500;
transition: color 0.3s ease;
}
nav ul li a:hover {
color: var(--primary-color);
}
.logo {
flex: 1;
text-align: left;
}
.service-icon,
.process-icon {
font-size: 3rem;
margin-bottom: 1rem;
color: var(--secondary-color);
}
.entity-icon {
font-size: 2rem;
color: var(--primary-color);
}
.process-step {
text-align: center;
margin-bottom: 2rem;
}
.client-image {
width: 50px;
height: 50px;
border-radius: 50%;
margin-right: 1rem;
}
.trusted-logo {
max-width: 120px;
height: auto;
margin: 1rem;
filter: grayscale(100%);
transition: filter 0.3s ease;
}
.trusted-logo:hover {
filter: grayscale(0%);
}
footer {
background-color: var(--text-color);
color: #fff;
padding: 2rem 0;
text-align: center;
}
.footer-links {
display: flex;
justify-content: center;
margin-bottom: 1rem;
}
.footer-links a {
color: #fff;
margin: 0 1rem;
text-decoration: none;
}
@media (max-width: 768px) {
h1 {
font-size: 2.5rem;
}
nav ul {
display: none;
}
}
</style>
</head>
<body>
<!-- Navigation -->
<nav class="bg-white py-4 shadow-md sticky top-0 z-50">
<div class="container mx-auto flex justify-between items-center px-4">
<div class="logo">
<a href="#"><img src="logo.png" alt="Launch_Agent" class="h-8"></a>
</div>
<ul class="desktop-menu flex space-x-4">
<li><a href="#features">Features</a></li>
<li><a href="#usecases">Use Cases</a></li>
<li><a href="#pricing">Pricing</a></li>
<li><a href="#signup">Get Started</a></li>
</ul>
<div class="mobile-menu">
<button id="menu-toggle" class="text-blue-500">
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16m-7 6h7"></path>
</svg>
</button>
</div>
</div>
<div id="mobile-menu-items" class="hidden bg-white w-full">
<a href="#features" class="block py-2 px-4 text-blue-500">Features</a>
<a href="#usecases" class="block py-2 px-4 text-blue-500">Use Cases</a>
<a href="#pricing" class="block py-2 px-4 text-blue-500">Pricing</a>
<a href="#signup" class="block py-2 px-4 text-blue-500">Get Started</a>
</div>
</nav>
<!-- Hero Section -->
<header class="hero-background">
<div>
<h1 class="text-4xl md:text-6xl text-shadow-strong">Launch_Agent: AI-Powered Landing Page Generator</h1>
<p class="text-xl md:text-2xl">Create high-converting landing pages in minutes, powered by AI.</p>
<a href="#signup" class="cta-button mt-4">Start Your Free Trial</a>
</div>
</header>
<!-- Social Proof Section -->
<section class="container mx-auto my-12 p-6">
<h2 class="text-3xl font-bold text-center mb-8">Trusted by Industry Leaders</h2>
<div class="flex justify-center space-x-8">
<img src="logo1.png" alt="Company 1" class="trusted-logo">
<img src="logo2.png" alt="Company 2" class="trusted-logo">
<img src="logo3.png" alt="Company 3" class="trusted-logo">
<img src="logo4.png" alt="Company 4" class="trusted-logo">
</div>
</section>
<!-- Key Benefits Section -->
<section class="container mx-auto my-12 p-6">
<h2 class="text-3xl font-bold text-center mb-8">Key Benefits of Launch_Agent</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div class="bg-white rounded-lg shadow-lg p-6">
<h3 class="text-xl font-bold mb-4">Rapid Page Creation</h3>
<p>Create landing pages in minutes, not hours, with our intuitive AI-powered templates.</p>
</div>
<div class="bg-white rounded-lg shadow-lg p-6">
<h3 class="text-xl font-bold mb-4">AI-Driven Optimization</h3>
<p>Launch_Agent uses advanced algorithms to optimize your pages for conversions, ensuring maximum impact.</p>
</div>
<div class="bg-white rounded-lg shadow-lg p-6">
<h3 class="text-xl font-bold mb-4">Integration with CAIRO Tools</h3>
<p>Seamlessly connect Launch_Agent with other CAIRO tools for a unified AI-powered marketing platform.</p>
</div>
<div class="bg-white rounded-lg shadow-lg p-6">
<h3 class="text-xl font-bold mb-4">Increased Conversion Rates</h3>
<p>See significant improvements in your conversion rates with Launch_Agent's data-driven optimization.</p>
</div>
</div>
</section>
<!-- Product Features Section -->
<section id="features" class="container mx-auto my-12 p-6">
<h2 class="text-3xl font-bold text-center mb-8">Powerful Features for High-Converting Pages</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div class="bg-white rounded-lg shadow-lg p-6">
<h3 class="text-xl font-bold mb-4">AI-Powered Template Selection</h3>
<p>Launch_Agent's AI intelligently suggests optimal templates based on your industry and goals.</p>
</div>
<div class="bg-white rounded-lg shadow-lg p-6">
<h3 class="text-xl font-bold mb-4">Drag-and-Drop Editor</h3>
<p>Customize your landing pages with ease, no coding required. It's simple enough for anyone to use.</p>
</div>
<div class="bg-white rounded-lg shadow-lg p-6">
<h3 class="text-xl font-bold mb-4">AI Copywriting Assistance</h3>
<p>Generate compelling and optimized copy for your landing pages with Launch_Agent's AI copywriting tool.</p>
</div>
<div class="bg-white rounded-lg shadow-lg p-6">
<h3 class="text-xl font-bold mb-4">A/B Testing Capabilities</h3>
<p>Run automated A/B tests to optimize your landing page performance and drive even higher conversions.</p>
</div>
<div class="bg-white rounded-lg shadow-lg p-6">
<h3 class="text-xl font-bold mb-4">Mobile Responsiveness</h3>
<p>Ensure your landing pages are optimized for all devices with Launch_Agent's mobile responsiveness features.</p>
</div>
<div class="bg-white rounded-lg shadow-lg p-6">
<h3 class="text-xl font-bold mb-4">Integration Capabilities</h3>
<p>Connect Launch_Agent with your favorite CRM, email marketing, and analytics tools for a seamless workflow.</p>
</div>
<div class="bg-white rounded-lg shadow-lg p-6">
<h3 class="text-xl font-bold mb-4">Conversion Rate Optimization Features</h3>
<p>Get AI-driven suggestions for improving your landing page performance and increasing conversions.</p>
</div>
<div class="bg-white rounded-lg shadow-lg p-6">
<h3 class="text-xl font-bold mb-4">Analytics Dashboard</h3>
<p>Track your landing page performance with actionable insights provided by Launch_Agent's analytics dashboard.</p>
</div>
</div>
</section>
<!-- Use Cases Section -->
<section id="usecases" class="container mx-auto my-12 p-6">
<h2 class="text-3xl font-bold text-center mb-8">Launch_Agent in Action: Use Cases</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div class="bg-white rounded-lg shadow-lg p-6">
<h3 class="text-xl font-bold mb-4">SaaS Companies</h3>
<p>Generate high-converting landing pages for product launches, feature announcements, and free trials.</p>
</div>
<div class="bg-white rounded-lg shadow-lg p-6">
<h3 class="text-xl font-bold mb-4">E-commerce</h3>
<p>Boost product page conversions and drive sales with optimized landing pages designed for your target audience.</p>
</div>
<div class="bg-white rounded-lg shadow-lg p-6">
<h3 class="text-xl font-bold mb-4">B2B Lead Generation</h3>
<p>Generate high-quality leads with landing pages designed to capture valuable information and nurture prospects.</p>
</div>
<div class="bg-white rounded-lg shadow-lg p-6">
<h3 class="text-xl font-bold mb-4">Event Marketing</h3>
<p>Increase webinar and conference sign-ups with engaging and persuasive landing pages that promote your events.</p>
</div>
<div class="bg-white rounded-lg shadow-lg p-6">
<h3 class="text-xl font-bold mb-4">Nonprofit Organizations</h3>
<p>Maximize donations and volunteer sign-ups with landing pages optimized for your specific goals and messaging.</p>
</div>
</div>
</section>
<!-- Pricing Section -->
<section id="pricing" class="container mx-auto my-12 p-6">
<h2 class="text-3xl font-bold text-center mb-8">Affordable Pricing Plans to Fit Your Needs</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-white rounded-lg shadow-lg p-6 text-center">
<h3 class="text-xl font-bold mb-4">Free</h3>
<p class="text-gray-600 mb-4">Get started with Launch_Agent for free.</p>
<ul class="list-disc list-inside">
<li>Basic AI-powered template selection</li>
<li>Limited landing page creation</li>
<li>Basic analytics</li>
</ul>
<button class="cta-button mt-4">Start Free Trial</button>
</div>
<div class="bg-white rounded-lg shadow-lg p-6 text-center">
<h3 class="text-xl font-bold mb-4">Pro</h3>
<p class="text-gray-600 mb-4">Unlock advanced features for maximum impact.</p>
<ul class="list-disc list-inside">
<li>Unlimited landing page creation</li>
<li>AI-driven optimization</li>
<li>A/B testing capabilities</li>
<li>Advanced analytics</li>
<li>Integration with CAIRO tools</li>
</ul>
<button class="cta-button mt-4">Get Pro Plan</button>
</div>
<div class="bg-white rounded-lg shadow-lg p-6 text-center">
<h3 class="text-xl font-bold mb-4">Enterprise</h3>
<p class="text-gray-600 mb-4">Tailored solutions for large teams and complex campaigns.</p>
<ul class="list-disc list-inside">
<li>All Pro features</li>
<li>Custom branding</li>
<li>Dedicated account manager</li>
<li>Priority support</li>
</ul>
<button class="cta-button mt-4">Contact Us</button>
</div>
</div>
</section>
<!-- Sign-up Section -->
<section id="signup" class="text-center py-12 bg-blue-100">
<h2 class="text-3xl font-bold mb-4">Start Creating High-Converting Landing Pages Today</h2>
<p class="text-gray-600 mb-8">Sign up for your free trial and experience the power of Launch_Agent.</p>
<form action="submit_form_url" method="post" class="max-w-md mx-auto px-4">
<input type="email" name="email" placeholder="Enter your email" class="w-full px-4 py-2 mb-4 border rounded">
<button type="submit" class="w-full px-6 py-3 bg-blue-500 text-white rounded-full hover:bg-blue-600 transition duration-300">Get Started</button>
</form>
</section>
<!-- Footer -->
<footer class="bg-gray-800 text-white py-8">
<div class="container mx-auto text-center">
<p>© 2024 CAIRO. All rights reserved.</p>
<div class="footer-links mt-4">
<a href="#">Privacy Policy</a>
<a href="#">Terms of Service</a>
<a href="#">FAQ</a>
</div>
</div>
</footer>
<div class="sticky-cta">
<a href="#signup" class="px-6 py-3 bg-blue-500 text-white rounded-full hover:bg-blue-600 transition duration-300">Get Started</a>
</div>
<script>
const menuToggle = document.getElementById('menu-toggle');
const mobileMenuItems = document.getElementById('mobile-menu-items');
menuToggle.addEventListener('click', () => {
mobileMenuItems.classList.toggle('hidden');
});
</script>
<p style="text-align: center; font-size: 12px; margin-top: 20px;">Made with LPG <a href="https://landing-page-generator-tau.vercel.app">https://landing-page-generator-tau.vercel.app</a></p>
</body>
</html>