// Delivery Hub page function DHLogoA({ size = 28 }) { return ( A ); } function DHNav() { const isMobile = useIsMobile(); const [open, setOpen] = React.useState(false); const links = [ ['../index.html#products', 'Products'], ['../index.html#processing', 'Processing'], ['../about.html', 'About'], ['../find-your-fit.html', 'Find your fit'], ]; return ( ); } function DHHero() { const isMobile = useIsMobile(); return (
← All products
Delivery Hub · part of Aloha Smart System

Every delivery app.
One Clover printer.

Send us your food photos — we set up Uber Eats, DoorDash, GrubHub and our own Hula Delivery for you. Orders print straight to your Clover. No tablet stack. No menu errors. No 30% markup.

You don't need to know how any of this works. That's our job.

See both tracks → Talk to us
{/* Hero visual: stack of platforms → one Clover printer */}
Incoming orders
{DH_PLATFORMS.map(p => (
{p.name} Live
))}
Hula Delivery Local
C
Clover Printer
Auto-accept · Auto-print · Auto-sync
); } function DHSetup() { const isMobile = useIsMobile(); return (
What you do · What we do

Send us photos. We do the rest.

Most restaurant owners we work with have never opened a DoorDash dashboard and don't want to. Good. They shouldn't have to.

{DH_SETUP_STEPS.map((s, i) => (
{s.n}
{s.k}
{s.v}
))}
); } function DHPriceProblem() { const isMobile = useIsMobile(); const p = DH_PRICE_COMPARE; return (
The 30% problem

Why your bibimbap costs $22 on Uber Eats.

Third-party platforms take 15–30% commission per order. To keep your margin, you raise the menu price 30%. The local guest pays for it. Tourists don't notice. Your regulars do — and they stop ordering.

{/* Pickup */}
Pickup at the store
{p.item}
${p.pickup.toFixed(2)}
The price you make money on. Your real menu.
{/* Aggregator markup */}
+30%
On Uber Eats / DoorDash
{p.item}
${p.aggregatorMarkup.toFixed(2)}
Inflated to cover the platform's 15–30% cut. Plus their fees on top.
{/* Hula */}
Local-first
On huladelivery.com
{p.item}
${p.hulaPrice.toFixed(2)} + ${p.hulaDeliveryFee.toFixed(2)} delivery
Same as your in-store price. Customer just pays the driver. You keep your full margin.
The math: A regular ordering 2× a week saves $10–15/week ordering through Hula Delivery instead of Uber Eats. That's how locals stick. That's how your repeat business compounds.
); } function DHTracks() { const isMobile = useIsMobile(); return (
Two tracks

Get discovered. Keep your locals.

Run them both — most owners do. Tourists find you on Uber Eats. Locals come back on Hula Delivery. Every order prints to the same Clover.

{/* Aggregator track */}
3rd-party track
Aggregator Hub
Uber Eats, DoorDash, GrubHub — all unified into one Clover-connected workflow. Get tourist reach without the tablet stack.
{DH_PLATFORMS.map(p => (
{p.name}
))}
    {DH_TRACKS_FEATURES_AGG.map((it, i) => (
  • +{it}
  • ))}
Best for
Tourist reach, filling empty kitchen hours, building visibility.
{/* Hula track */}
Aloha-built
Local track
Hula Delivery
Our own delivery platform built for Hawaii. Pickup price = delivery price. Customer pays a delivery fee. You keep your margin and your customer.
huladelivery.com · live in Honolulu
    {DH_TRACKS_FEATURES_HULA.map((it, i) => (
  • +{it}
  • ))}
Best for
Loyal local base, repeat regulars, protecting your real menu margin.
); } function DHCompare() { const isMobile = useIsMobile(); return (
Side by side

Same Clover printer. Different economics.

{isMobile ? (
{DH_COMPARE.map((c, i) => (
{c.row}
Aggregator Hub
{c.agg}
Hula Delivery
{c.hula}
))}
) : (
Aggregator Hub
Hula Delivery
{DH_COMPARE.map((c, i) => (
{c.row}
{c.agg}
{c.hula}
))}
)}
); } function DHFAQ() { const isMobile = useIsMobile(); return (
Questions owners ask

You don't need to know any of this. But here's the answer anyway.

{DH_FAQ.map((f, i) => (
{f.q} +
{f.a}
))}
); } function DHContact() { const isMobile = useIsMobile(); return (
Ready when you are

Send us photos. We'll handle the rest.

Email us your menu and a few food photos. We come back with a deployment plan, a timeline, and a setup we run end-to-end. You stay in the kitchen.

Get set up → Take the 60-second fit quiz
Built in Honolulu · huladelivery.com · (808) 650-3331
); } function DHFooter() { return ( ); } function DeliveryHubPage() { return (
); } window.DeliveryHubPage = DeliveryHubPage;