Clicky

Accelerated Mobile Pages Are the Thing Nobody Tells Local Businesses About

I’m sitting in my car outside a taco place at 9:47 PM. They close at 10. Their website is still loading. Thirty seconds pass. Still spinning like a pinwheel of death. I drive to Chipotle instead. That’s a $40 order they just lost because their site runs like shit on a phone.

When working with local businesses, I usually do this test. Pull up their site on my phone in a parking lot on regular cell service (not the magical office WiFi they tested it on). Time how long it takes to find basic shit like hours or a phone number. Most fail so spectacularly it’s almost funny. Loading bars. Frozen pages. Those “Oops! Something went wrong” errors. Meanwhile, customers are literally sitting in their cars, credit cards out, trying desperately to give them money. But no. Can’t load a simple webpage in 2024.

The stupid part? There’s a solution that’s been around for years. Google basically handed local businesses a cheat code for mobile visibility and everyone ignored it because it sounds too technical. Accelerated Mobile Pages. AMP. Whatever the hell you want to call it. The difference is like answering the phone on the first ring versus letting it go to voicemail while you finish your sandwich.

While you’re jerking off to Instagram stories and throwing money at Facebook ads that nobody clicks, you’re hemorrhaging customers who can’t even load your website. They’re not comparing prices or reading reviews. They’re watching a loading screen, getting pissed, and going to whoever’s site works. Usually, your competition who figured this out three years ago.

AMP Is Just Fast Websites

Accelerated Mobile Pages. Sounds like corporate tech garbage, right? It’s not.

Think of your current website like a hoarder’s house. Every widget, every fancy animation, every tracking script you’ve added over the years. It’s all junk, slowing everything down. AMP is what happens when you throw out everything except what matters. Your hours. Your phone number. Your location. The stuff people really need.

Regular website: 8 seconds to load your menu.
AMP website: 0.5 seconds.

That’s it. That’s the whole pitch.

The technical stuff breaks down into three parts that matter:

AMP HTML: Your website code with all the garbage removed. No random JavaScript that crashes mobile browsers. No auto-playing videos nobody asked for. Just the content people came for.

AMP JavaScript: A single library that handles everything instead of the 47 different scripts your “web guy” installed over the years. It literally won’t let you add slow stuff.

AMP Cache: Google pre-loads your pages before anyone even clicks. Like having your business card already in someone’s hand before they ask for it.

Why This Puts Money in Your Pocket

Half the people trying to visit your site on mobile will leave if it takes more than 3 seconds to load. Not “might leave.” Will leave. That’s not my opinion. That’s what happens.

I know a plumber who was getting maybe two calls a week from his website. Implemented AMP on his service pages. Now he gets two calls a day. Same content. Same SEO. Just loads faster.

Google straight up admits they rank faster sites higher. Especially for “near me” searches. You know, the ones where people need something right now and have their credit card ready.

Your competitor’s site takes 8 seconds to show their phone number. Yours loads instantly. Guess who gets the call?

The Annoying Thing About AMP

I’m not selling you anything, so I’ll tell you what’s annoying.

You can’t use those fancy slideshow widgets your nephew installed. Good. They were slowing everything down anyway.

Your site won’t look exactly like your desktop version. Nobody cares. They just want your phone number.

If you make money from ads on your site (you probably don’t), AMP limits how many you can show. One per page. Again, probably not your problem.

Some of your tracking might break. The important stuff still works. Google Analytics, Facebook Pixel, all that. But some random heat map tool from 2019? Yeah, that’s gone.

Sites That Are Good At This

The Washington Post gets this right. Their articles load before you can blink. No “Loading…” screens. No watching ads slowly render while the content jumps around.

WordPress has AMP built in now. Millions of sites using it without even knowing. If you’re on WordPress (and you probably are), you’re already halfway there.

But forget the big players. I’ve seen local pizza shops, dentists, and mechanics nail this. Their service pages, contact info, hours… all instant. While their competition is still loading jQuery from 2015.

How to Do This Without Hiring Someone

Here’s what an AMP page looks like:

<!doctype html>
<html amp>
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1">
    <link rel="canonical" href="your-regular-page.html">
    <style amp-boilerplate>body{-webkit-animation:-amp-start 8s steps(1,end) 0s 1 normal both;-moz-animation:-amp-start 8s steps(1,end) 0s 1 normal both;-ms-animation:-amp-start 8s steps(1,end) 0s 1 normal both;animation:-amp-start 8s steps(1,end) 0s 1 normal both}@-webkit-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-moz-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-ms-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-o-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}</style>
    <script async src="https://cdn.ampproject.org/v0.js"></script>
</head>
<body>
    Your actual content
</body>
</html>

That mess in the middle? Just copy and paste it. It works.

Images need to be <amp-img> instead of <img>:

<amp-img src="your-store-photo.jpg" width="300" height="200" alt="Our store"></amp-img>

All your CSS goes in one place in the header. No external stylesheets. Sounds limiting? It is. That’s why it’s fast.

Which Pages Matter

You don’t need to convert your whole site. That’s dumb.

Do these pages first:

  • Your contact page (where you are, how to call)
  • Your hours (are you open right now?)
  • Your main services (what you actually do)
  • Your pricing (if you show it)

Skip these:

  • Your “About Us” novel nobody reads
  • That gallery of your company picnic
  • The blog you haven’t updated since 2019

Start with the pages people check on their phones while standing outside your door or sitting in their car.

Stop Overthinking This

Your mobile site is slow. It’s costing you customers. AMP makes it fast. That’s the entire story.

While you’re reading articles about social media strategy and arguing about logo colors, people are trying to give you money and can’t because your site won’t load. Fix that first.

Most local businesses haven’t figured this out yet. They’re still paying someone’s cousin to “maintain” a WordPress site that takes 10 seconds to show a phone number. You can be better than that.

The mobile web isn’t the future. It’s right now. People are literally standing outside businesses, trying to check if they’re open on their phones. If your site doesn’t load instantly, they’re going somewhere else.

Set this up. Test it. Watch what happens to your phone calls. Then send me a thank you note. Or don’t. I’ll be too busy answering calls from customers whose sites load.

Leave a Comment

Your email address will not be published. Required fields are marked *