Spaces:
Running
Running
File size: 29,658 Bytes
0d96948 f2b134f 0d96948 f2b134f 0d96948 f2b134f 0d96948 f2b134f 0d96948 f2b134f 0d96948 |
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 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SteadyFlow | AI Automation Agency</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.gradient-text {
background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 100%);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.process-step::before {
content: '';
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
width: 2px;
height: 100%;
background: #e5e7eb;
z-index: 1;
}
@media (max-width: 768px) {
.process-step::before {
left: 1.5rem;
}
}
</style>
</head>
<body class="font-sans antialiased text-gray-800 bg-white">
<!-- Navigation -->
<nav class="bg-white shadow-sm sticky top-0 z-50">
<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">
<div class="flex-shrink-0 flex items-center">
<span class="text-2xl font-bold text-blue-600">SteadyFlow</span>
</div>
</div>
<div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
<a href="#services" class="text-gray-500 hover:text-gray-700 px-3 py-2 text-sm font-medium">Services</a>
<a href="#process" class="text-gray-500 hover:text-gray-700 px-3 py-2 text-sm font-medium">Process</a>
<a href="#faq" class="text-gray-500 hover:text-gray-700 px-3 py-2 text-sm font-medium">FAQ</a>
<a href="#contact" class="bg-blue-600 text-white px-4 py-2 rounded-md text-sm font-medium hover:bg-blue-700 transition-colors">Get Started</a>
</div>
<div class="-mr-2 flex items-center md:hidden">
<button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none" aria-expanded="false" id="mobile-menu-button">
<span class="sr-only">Open main menu</span>
<i class="fas fa-bars"></i>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div class="hidden md:hidden" id="mobile-menu">
<div class="pt-2 pb-3 space-y-1">
<a href="#services" class="block px-3 py-2 text-base font-medium text-gray-700 hover:text-gray-900 hover:bg-gray-50">Services</a>
<a href="#process" class="block px-3 py-2 text-base font-medium text-gray-700 hover:text-gray-900 hover:bg-gray-50">Process</a>
<a href="#faq" class="block px-3 py-2 text-base font-medium text-gray-700 hover:text-gray-900 hover:bg-gray-50">FAQ</a>
<a href="#contact" class="block px-3 py-2 text-base font-medium text-blue-600 hover:text-blue-800 hover:bg-blue-50">Get Started</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="bg-gradient-to-br from-blue-50 to-white py-24">
<div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<div class="mb-12">
<h1 class="text-5xl font-bold text-gray-900 leading-tight mb-6">
<span class="block">Transform Your Business</span>
<span class="block gradient-text">With AI Automation</span>
</h1>
<p class="text-xl text-gray-600 max-w-2xl mx-auto">
We build custom AI-powered workflows that save you time, reduce costs, and help your business scale effortlessly.
</p>
</div>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<a href="#contact" class="px-8 py-4 bg-blue-600 hover:bg-blue-700 text-white font-medium rounded-lg transition-colors shadow-lg hover:shadow-xl">
Book Free Consultation
</a>
<a href="#services" class="px-8 py-4 border border-gray-300 bg-white hover:bg-gray-50 text-gray-700 font-medium rounded-lg transition-colors">
Explore Services
</a>
</div>
<p class="mt-4 text-sm text-gray-500">
No obligation. Just 30 minutes to explore your automation potential.
</p>
</div>
</section>
<!-- Services Section -->
<section id="services" class="py-16 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center">
<h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl">
Our <span class="gradient-text">Automation Services</span>
</h2>
<p class="mt-4 max-w-2xl text-xl text-gray-500 mx-auto">
We specialize in creating custom solutions that fit your unique business needs.
</p>
</div>
<div class="mt-16 grid gap-8 md:grid-cols-2 lg:grid-cols-3">
<!-- Service 1 -->
<div class="service-card bg-white rounded-lg shadow-md overflow-hidden transition-all duration-300 ease-in-out">
<div class="p-6">
<div class="flex items-center">
<div class="flex-shrink-0 bg-blue-100 rounded-md p-3">
<i class="fas fa-robot text-blue-600 text-xl"></i>
</div>
<h3 class="ml-4 text-lg font-medium text-gray-900">AI-Powered Workflows</h3>
</div>
<p class="mt-4 text-gray-500">
Intelligent automation that learns and adapts to your business processes, handling repetitive tasks with precision.
</p>
<ul class="mt-4 space-y-2">
<li class="flex items-start">
<div class="flex-shrink-0 text-blue-500">
<i class="fas fa-check-circle"></i>
</div>
<p class="ml-2 text-sm text-gray-600">ChatGPT & Claude AI integration</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 text-blue-500">
<i class="fas fa-check-circle"></i>
</div>
<p class="ml-2 text-sm text-gray-600">Custom AI agents for specific tasks</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 text-blue-500">
<i class="fas fa-check-circle"></i>
</div>
<p class="ml-2 text-sm text-gray-600">Automated content generation</p>
</li>
</ul>
</div>
</div>
<!-- Service 2 -->
<div class="service-card bg-white rounded-lg shadow-md overflow-hidden transition-all duration-300 ease-in-out">
<div class="p-6">
<div class="flex items-center">
<div class="flex-shrink-0 bg-blue-100 rounded-md p-3">
<i class="fas fa-exchange-alt text-blue-600 text-xl"></i>
</div>
<h3 class="ml-4 text-lg font-medium text-gray-900">System Integration</h3>
</div>
<p class="mt-4 text-gray-500">
Connect your existing tools and platforms to create seamless workflows that eliminate manual data entry.
</p>
<ul class="mt-4 space-y-2">
<li class="flex items-start">
<div class="flex-shrink-0 text-blue-500">
<i class="fas fa-check-circle"></i>
</div>
<p class="ml-2 text-sm text-gray-600">n8n & Make.com expertise</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 text-blue-500">
<i class="fas fa-check-circle"></i>
</div>
<p class="ml-2 text-sm text-gray-600">Custom API connections</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 text-blue-500">
<i class="fas fa-check-circle"></i>
</div>
<p class="ml-2 text-sm text-gray-600">Data transformation & mapping</p>
</li>
</ul>
</div>
</div>
<!-- Service 3 -->
<div class="service-card bg-white rounded-lg shadow-md overflow-hidden transition-all duration-300 ease-in-out">
<div class="p-6">
<div class="flex items-center">
<div class="flex-shrink-0 bg-blue-100 rounded-md p-3">
<i class="fas fa-chart-line text-blue-600 text-xl"></i>
</div>
<h3 class="ml-4 text-lg font-medium text-gray-900">Lead Generation Automation</h3>
</div>
<p class="mt-4 text-gray-500">
Automated systems that find, qualify, and nurture leads so you can focus on closing deals.
</p>
<ul class="mt-4 space-y-2">
<li class="flex items-start">
<div class="flex-shrink-0 text-blue-500">
<i class="fas fa-check-circle"></i>
</div>
<p class="ml-2 text-sm text-gray-600">LinkedIn & email scraping</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 text-blue-500">
<i class="fas fa-check-circle"></i>
</div>
<p class="ml-2 text-sm text-gray-600">Personalized outreach sequences</p>
</li>
<li class="flex items-start">
<div class="flex-shrink-0 text-blue-500">
<i class="fas fa-check-circle"></i>
</div>
<p class="ml-2 text-sm text-gray-600">CRM automation</p>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Process Section -->
<section id="process" class="py-16 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center">
<h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl">
Our <span class="gradient-text">Simple Process</span>
</h2>
<p class="mt-4 max-w-2xl text-xl text-gray-500 mx-auto">
From discovery to deployment, we make automation easy and transparent.
</p>
</div>
<div class="mt-16 relative">
<!-- Step 1 -->
<div class="relative process-step pb-12">
<div class="flex items-start">
<div class="absolute z-10 flex items-center justify-center w-12 h-12 rounded-full bg-blue-600 text-white">
<span class="text-xl font-bold">1</span>
</div>
<div class="ml-16">
<h3 class="text-lg font-medium text-gray-900">Discovery Call</h3>
<p class="mt-2 text-gray-600">
We'll discuss your business challenges and identify automation opportunities that will deliver the most impact.
</p>
</div>
</div>
</div>
<!-- Step 2 -->
<div class="relative process-step pb-12">
<div class="flex items-start">
<div class="absolute z-10 flex items-center justify-center w-12 h-12 rounded-full bg-blue-600 text-white">
<span class="text-xl font-bold">2</span>
</div>
<div class="ml-16">
<h3 class="text-lg font-medium text-gray-900">Custom Solution Design</h3>
<p class="mt-2 text-gray-600">
Our experts will architect a tailored automation solution with clear milestones and deliverables.
</p>
</div>
</div>
</div>
<!-- Step 3 -->
<div class="relative process-step">
<div class="flex items-start">
<div class="absolute z-10 flex items-center justify-center w-12 h-12 rounded-full bg-blue-600 text-white">
<span class="text-xl font-bold">3</span>
</div>
<div class="ml-16">
<h3 class="text-lg font-medium text-gray-900">Deployment & Training</h3>
<p class="mt-2 text-gray-600">
We implement the solution, provide comprehensive training, and offer ongoing support to ensure success.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- FAQ Section -->
<section id="faq" class="py-16 bg-gray-50">
<div class="max-w-3xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center">
<h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl">
Frequently <span class="gradient-text">Asked Questions</span>
</h2>
</div>
<div class="mt-12 space-y-6">
<!-- FAQ 1 -->
<div class="bg-white shadow overflow-hidden rounded-lg">
<div class="px-4 py-5 sm:p-6">
<button class="w-full flex justify-between items-center text-left focus:outline-none" id="faq1-button">
<h3 class="text-lg font-medium text-gray-900">How much does automation cost?</h3>
<i class="fas fa-chevron-down text-blue-500 transition-transform duration-200" id="faq1-icon"></i>
</button>
<div class="mt-4 hidden" id="faq1-content">
<p class="text-gray-600">
Costs vary based on complexity, but most automation projects range from $2,000-$15,000 with an average ROI period of 3-6 months. We offer flexible payment plans and always start with a free consultation to assess your needs.
</p>
</div>
</div>
</div>
<!-- FAQ 2 -->
<div class="bg-white shadow overflow-hidden rounded-lg">
<div class="px-4 py-5 sm:p-6">
<button class="w-full flex justify-between items-center text-left focus:outline-none" id="faq2-button">
<h3 class="text-lg font-medium text-gray-900">What if I need changes after implementation?</h3>
<i class="fas fa-chevron-down text-blue-500 transition-transform duration-200" id="faq2-icon"></i>
</button>
<div class="mt-4 hidden" id="faq2-content">
<p class="text-gray-600">
We include 30 days of free support after deployment for any adjustments. After that, we offer maintenance packages or can bill hourly for changes. Our workflows are designed to be modular and easy to modify as your needs evolve.
</p>
</div>
</div>
</div>
<!-- FAQ 3 -->
<div class="bg-white shadow overflow-hidden rounded-lg">
<div class="px-4 py-5 sm:p-6">
<button class="w-full flex justify-between items-center text-left focus:outline-none" id="faq3-button">
<h3 class="text-lg font-medium text-gray-900">How long does implementation take?</h3>
<i class="fas fa-chevron-down text-blue-500 transition-transform duration-200" id="faq3-icon"></i>
</button>
<div class="mt-4 hidden" id="faq3-content">
<p class="text-gray-600">
Most projects are completed within 2-6 weeks depending on complexity. We'll provide a clear timeline during our discovery call. Some simpler automations can be deployed in just a few days.
</p>
</div>
</div>
</div>
<!-- FAQ 4 -->
<div class="bg-white shadow overflow-hidden rounded-lg">
<div class="px-4 py-5 sm:p-6">
<button class="w-full flex justify-between items-center text-left focus:outline-none" id="faq4-button">
<h3 class="text-lg font-medium text-gray-900">Do I need technical skills to use the automations?</h3>
<i class="fas fa-chevron-down text-blue-500 transition-transform duration-200" id="faq4-icon"></i>
</button>
<div class="mt-4 hidden" id="faq4-content">
<p class="text-gray-600">
Not at all! We design solutions with the end-user in mind. You'll receive simple documentation and training tailored to your technical comfort level. Most of our clients interact with their automations through familiar interfaces like email or their existing software.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Final CTA -->
<section id="contact" class="py-16 bg-blue-600">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="lg:grid lg:grid-cols-2 lg:gap-8 items-center">
<div>
<h2 class="text-3xl font-extrabold text-white sm:text-4xl">
Ready to <span class="text-blue-200">automate</span> your business?
</h2>
<p class="mt-3 text-lg text-blue-100">
Schedule your free consultation today. No obligation, just 30 minutes to explore how automation can transform your operations.
</p>
</div>
<div class="mt-8 lg:mt-0">
<form class="space-y-6">
<div>
<label for="name" class="sr-only">Full Name</label>
<input id="name" name="name" type="text" required class="w-full px-5 py-3 border border-transparent placeholder-gray-500 focus:ring-2 focus:ring-offset-2 focus:ring-blue-400 focus:outline-none rounded-md" placeholder="Full Name">
</div>
<div>
<label for="email" class="sr-only">Email</label>
<input id="email" name="email" type="email" required class="w-full px-5 py-3 border border-transparent placeholder-gray-500 focus:ring-2 focus:ring-offset-2 focus:ring-blue-400 focus:outline-none rounded-md" placeholder="Email">
</div>
<div>
<button type="submit" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-blue-600 bg-white hover:bg-gray-100 md:py-4 md:text-lg md:px-10 transition-colors">
Book Free Consultation
</button>
</div>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900">
<div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8">
<div class="xl:grid xl:grid-cols-3 xl:gap-8">
<div class="space-y-8 xl:col-span-1">
<span class="text-2xl font-bold text-white">SteadyFlow</span>
<p class="text-gray-300 text-base">
Helping businesses scale with proper intelligent automation.
</p>
</div>
<div class="mt-12 grid grid-cols-2 gap-8 xl:mt-0 xl:col-span-2">
<div class="md:grid md:grid-cols-2 md:gap-8">
<div>
<h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase">
Services
</h3>
<ul class="mt-4 space-y-4">
<li>
<a href="#" class="text-base text-gray-400 hover:text-white">
AI Automation
</a>
</li>
<li>
<a href="#" class="text-base text-gray-400 hover:text-white">
System Integration
</a>
</li>
<li>
<a href="#" class="text-base text-gray-400 hover:text-white">
Lead Generation
</a>
</li>
</ul>
</div>
<div class="mt-12 md:mt-0">
<h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase">
Company
</h3>
<ul class="mt-4 space-y-4">
<li>
<a href="#" class="text-base text-gray-400 hover:text-white">
About
</a>
</li>
<li>
<a href="#" class="text-base text-gray-400 hover:text-white">
Blog
</a>
</li>
<li>
<a href="#" class="text-base text-gray-400 hover:text-white">
Contact
</a>
</li>
</ul>
</div>
</div>
<div class="md:grid md:grid-cols-2 md:gap-8">
<div>
<h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase">
Legal
</h3>
<ul class="mt-4 space-y-4">
<li>
<a href="#" class="text-base text-gray-400 hover:text-white">
Privacy
</a>
</li>
<li>
<a href="#" class="text-base text-gray-400 hover:text-white">
Terms
</a>
</li>
</ul>
</div>
<div class="mt-12 md:mt-0">
<h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase">
Contact
</h3>
<ul class="mt-4 space-y-4">
<li>
<a href="#" class="text-base text-gray-400 hover:text-white">
[email protected]
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="mt-12 border-t border-gray-800 pt-8">
<p class="text-base text-gray-400 text-center">
© 2025 SteadyFlow. All rights reserved.
</p>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.getElementById('mobile-menu-button').addEventListener('click', function() {
const menu = document.getElementById('mobile-menu');
menu.classList.toggle('hidden');
});
// FAQ accordion functionality
const faqButtons = [
{ button: 'faq1-button', content: 'faq1-content', icon: 'faq1-icon' },
{ button: 'faq2-button', content: 'faq2-content', icon: 'faq2-icon' },
{ button: 'faq3-button', content: 'faq3-content', icon: 'faq3-icon' },
{ button: 'faq4-button', content: 'faq4-content', icon: 'faq4-icon' }
];
faqButtons.forEach(faq => {
const button = document.getElementById(faq.button);
const content = document.getElementById(faq.content);
const icon = document.getElementById(faq.icon);
button.addEventListener('click', function() {
const isExpanded = content.classList.contains('hidden');
// Toggle content
if (isExpanded) {
content.classList.remove('hidden');
icon.classList.add('transform', 'rotate-180');
} else {
content.classList.add('hidden');
icon.classList.remove('transform', 'rotate-180');
}
});
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if (targetId === '#') return;
const targetElement = document.querySelector(targetId);
if (targetElement) {
targetElement.scrollIntoView({
behavior: 'smooth'
});
// Close mobile menu if open
const mobileMenu = document.getElementById('mobile-menu');
if (!mobileMenu.classList.contains('hidden')) {
mobileMenu.classList.add('hidden');
}
}
});
});
</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=eingarro/steadyflow" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |