import React, { useState } from 'react'; import { ArrowRight, Calendar, Clock, AlertCircle, Link as LinkIcon, Workflow, Zap, Box, Puzzle, CheckCircle2, ChevronDown, ChevronUp, Star, Menu, X, Twitter, Linkedin, Github, BarChart3, Users, PhoneCall, ShieldCheck, Briefcase } from 'lucide-react'; const App = () => { const [isMenuOpen, setIsMenuOpen] = useState(false); const [openFaq, setOpenFaq] = useState(0); const [isAuditModalOpen, setIsAuditModalOpen] = useState(false); const [auditFormStatus, setAuditFormStatus] = useState('idle'); const faqs = [ { q: "Do I need any technical or coding skills?", a: "Not at all. That's the beauty of our Done-For-You service. Our team of expert engineers handles all the coding, API connections, and complex logic. You just tell us your business goals." }, { q: "How long does a custom automation build take?", a: "It depends on the complexity of your workflows, but most standard projects are scoped, built, tested, and deployed within 2 to 4 weeks. We'll give you a precise timeline during our discovery call." }, { q: "What platforms and tools do you work with?", a: "We are experts in connecting over 200+ applications including Shopify, WooCommerce, Meta Ads, Google Ads, Klaviyo, HubSpot, Salesforce, and Slack. If it has an API, we can automate it." }, { q: "Who manages the automations after they are live?", a: "We offer handover training so your team can understand how things work. Alternatively, most of our clients opt for our 'Automation Partner' retainer where we continuously monitor, maintain, and optimize your systems 24/7." }, { q: "Are my company's data and systems secure?", a: "Absolutely. We follow strict security protocols, utilizing bank-level encryption and secure API key management. We sign NDAs and never retain your proprietary customer data on our own servers." } ]; return (
{/* Navigation */} {/* Hero Section */}
Done-For-You Automation Agency

Automate the Busywork.
Accelerate What Matters.

We design and build custom, AI-powered automation systems for retailers and marketers. Stop wasting time on repetitive tasks. Let our experts streamline your operations so you can scale without adding headcount.

ROI Focus: Manual vs Automated

TRADITIONAL Manual Operations
CSV Exports → Human Cleaning → CRM Upload → Manual Alerts

Resource Drain: 15-20 hours/week

MASTER AUTOMATION Managed AI Engine
Instant API Sync → AI Enrichment → CRM Updated → Instant Alert

99.9% Accuracy. Millions in recovered ROI.

{/* Social Proof Bar */}

500+

Clients Transformed

2M+

Tasks Automated Daily

4.9

Average Rating

{/* Pain Point Section */}

Sound Familiar?

You didn't start a business to become a data-entry clerk or IT manager.

Drowning in Manual Tasks

Your team spends hours copying data, updating spreadsheets, and sending follow-ups by hand instead of doing high-value work.

Missed Revenue Opportunities

Slow response times, forgotten lead follow-ups, and inconsistent outreach are costing you customers every single day.

Too Many Disconnected Tools

Your tech stack doesn't talk to itself, and duct-taping APIs together has become an exhausting full-time job.

{/* Solutions Section */}

We Build The Engine. You Drive The Growth.

Master Automation Tools isn't just software you have to learn. We are an expert team that builds bespoke connections between your ad platforms, CRMs, inventory systems, and emails.

Custom Automation Architecture

We design workflows perfectly tailored to your business.

Forget generic templates. Our engineers map out your specific operational bottlenecks and custom-code robust, multi-step solutions that run silently in the background.

  • Comprehensive workflow auditing
  • Custom API and webhook integrations
  • Zero coding required on your end

Lead Captured

Our Custom
AI Routing

Inventory Reserved

Sales Team
Notified

Fully Managed AI Campaigns

We launch and optimize your campaigns on autopilot.

Our team builds smart systems that automatically segment your audiences, trigger highly personalized messages, A/B test creatives, and reallocate budget based on real-time AI insights.

Campaign Performance +24% ROI Delivered
{[40, 55, 45, 70, 60, 90, 85].map((height, i) => (
))}
{/* How It Works */}

Our Proven Done-For-You Process

1

Discovery & Strategy

We analyze your business, identify critical bottlenecks, and map out a custom automation blueprint for maximum ROI.

2

Custom Build & Deployment

Our expert engineers write the code, configure the APIs, and rigorously test the entire workflow before it goes live.

3

Hand-off & Optimization

You sit back and watch it work. We provide full training, ongoing technical support, and continuous optimization.

{/* ROI / Results Section */}

The Real ROI You Want

We focus on metrics that matter. More revenue, more time, and zero manual errors.

12+ hr

Average time saved per week

34%

Increase in campaign ROI

91%

Reduction in manual errors

100%

Done-For-You Build

{[ { industry: "E-Commerce Retailer", metric: "+£125k/mo", metricLabel: "Recovered Revenue", details: "Built a fully managed, 5-step abandoned cart and dynamic inventory sync workflow that eliminates stockouts.", icon: BarChart3, iconBg: "bg-cyan-500/10", iconColor: "text-cyan-400" }, { industry: "B2B SaaS Company", metric: "40 hrs", metricLabel: "Saved Weekly", details: "Replaced 3 manual data-entry processes with a custom, seamless API connection between Salesforce and their proprietary app.", icon: Clock, iconBg: "bg-blue-500/10", iconColor: "text-blue-400" }, { industry: "Marketing Agency", metric: "3x", metricLabel: "Faster Onboarding", details: "Automated client onboarding, folder creation, and initial ad campaign structure setup with zero human touch.", icon: Zap, iconBg: "bg-purple-500/10", iconColor: "text-purple-400" } ].map((roi, i) => { const Icon = roi.icon; return (

{roi.industry}

{roi.metric}

{roi.metricLabel}

{roi.details}

); })}
{/* Pricing/Packages */}

Service Packages Tailored To You

Whether you need a full operational audit or an ongoing engineering partner, we have a structure that fits your needs.

Automation Audit

Best for identifying bottlenecks before you build.

One-Time
  • Full operational discovery session
  • Tech stack compatibility review
  • Custom automation blueprint document
Most Popular

Custom Build Project

Best for immediate implementation of high-impact workflows.

Project-Based
  • Everything in the Audit
  • Full custom coding & API configuration
  • Rigorous QA testing and deployment

Automation Partner

Best for businesses needing ongoing engineering support.

Monthly Retainer
  • Unlimited workflow builds & iterations
  • 24/7 monitoring and error resolution
  • Dedicated lead engineer
{/* FAQ */}

Got Questions? We've Got Answers.

{faqs.map((faq, index) => (

{faq.a}

))}
{/* Final CTA */}

Stop Doing Manually What AI Can Do Instantly.

Join hundreds of retailers and marketers who let our agency build their automated path to faster growth.

No commitment required. Find out what's possible in just 30 minutes.

{/* Footer */} {/* Audit Booking Modal */} {isAuditModalOpen && (
setIsAuditModalOpen(false)}>

Book Your Free Audit

Discover how much time and money you could save.

{auditFormStatus === 'success' ? (

Request Received!

Our lead engineer will be in touch within 24 hours.

) : (
{ e.preventDefault(); setAuditFormStatus('submitting'); setTimeout(() => setAuditFormStatus('success'), 1200); }} className="space-y-4" >
)}
)}
); }; export default App;