// Table Order — page components (simplified, focused on cost savings + speed + recession-friendly) function TOLogoA({ size = 28 }) { return ( A ); } function ZorderLogo({ height = 28 }) { return ( Zorder ); } // ──────────────────────────────────────────────────────────────────── function TONav() { const isMobile = useIsMobile(); const [open, setOpen] = React.useState(false); const links = [ ['../index.html#products', 'Products'], ['#references', 'Live'], ['#how', 'How it works'], ['../index.html#processing', 'Processing'], ['../about.html', 'About'], ['../find-your-fit.html', 'Find your fit'], ]; return ( ); } // ──────────────────────────────────────────────────────────────────── function TOHero() { const isMobile = useIsMobile(); return (
← All products
Table Order · Part of Aloha Smart System

Cut server hours.
Speed up orders.

Tablet ordering for any restaurant where servers take orders. Guests order from the table, kitchen sees it instantly, your existing POS logs the sale.

Powered by
{!isMobile &&
}
Plugs into
Toast· Clover· Verona
See it live → Get in touch
); } // ──────────────────────────────────────────────────────────────────── // Three big numbers — the whole pitch function TOPitch() { const isMobile = useIsMobile(); const nums = [ { stat: '−1', unit: 'server', label: 'Labor', body: 'One tablet per table covers 2–3× the section. In Hawaii, that\'s $20+/hr per shift saved.', }, { stat: '<10s', unit: '', label: 'Speed', body: 'Order tap → kitchen ticket. No waiting for a server to come over and no order mix-ups.', }, { stat: '$0', unit: 'upfront', label: 'Recession-friendly', body: 'Keep your POS. Add tablets. Pay monthly. No big capital outlay during a tight year.', }, ]; return (

The pitch is simple.

{nums.map(n => (
{n.label}
{n.stat}
{n.unit && (
{n.unit}
)}

{n.body}

))}
); } // ──────────────────────────────────────────────────────────────────── function TOReferences() { const isMobile = useIsMobile(); return (
Live in Hawaii

Running right now.

{TO_REFERENCES.map(r => (
{r.photo ? (
{r.name}
{r.mode}
) : r.isLantern ? (
ちょうちん
Yakitori · Sake · Small plates
{r.mode}
) : (
{r.logo && {r.name}}
{r.mode}
)}
{r.name}
{r.subtitle}

{r.description}

))}
); } // ──────────────────────────────────────────────────────────────────── function TOWhereItFits() { const isMobile = useIsMobile(); const fits = [ { tag: 'Korean BBQ', body: 'AYCE rounds, butcher cuts, sides.' }, { tag: 'Izakaya', body: 'Small plates, sake refills, multiple rounds.' }, { tag: 'Yakitori Bar', body: 'Skewer-paced ordering all night.' }, { tag: 'Full-service', body: 'Banchan, soup, BBQ, soju — endless calls.' }, ]; return (

Where it fits.

Anywhere guests reorder multiple times in a sitting.

{fits.map(f => (
{f.tag}

{f.body}

))}
); } // ──────────────────────────────────────────────────────────────────── function TOHowItWorks() { const isMobile = useIsMobile(); const steps = [ { n: '1', label: 'Guest taps the tablet', body: 'Menu in their language, photos, prices. They order at their pace, no waiting for a server.' }, { n: '2', label: 'Kitchen sees it instantly', body: 'Order routes to the right printer (kitchen, bar, server station) in under 10 seconds.' }, { n: '3', label: 'POS logs the sale', body: 'Toast, Clover, or Verona records the transaction. Reports, taxes, tips — your normal close.' }, ]; return (
How it works

Three steps. No order errors.

{steps.map(s => (
{s.n}
{s.label}

{s.body}

))}
{/* AYCE callout — compressed */}
AYCE
All-You-Can-Eat runs itself. Dinner timer on-screen, round tracking, throttling — Sura Hawaii uses it nightly.
See AYCE demo →
); } // ──────────────────────────────────────────────────────────────────── function TOPosPartners() { const isMobile = useIsMobile(); const partners = [ { name: 'Toast', body: 'Cloud-based POS for restaurants. Online ordering and team management.' }, { name: 'Clover', body: 'All-in-one POS with payments, inventory, and customer tools.' }, { name: 'Verona', body: 'Restaurant POS with real-time reports and multi-channel orders.' }, ]; return (

Keep your POS.

Zorder plugs into all three major restaurant POS platforms used in Hawaii. Every tablet order lands directly in your existing system — no double entry.

{partners.map((p, i) => (
{p.name === 'Toast' && {p.name.toLowerCase()}} {p.name === 'Clover' && ( Clover )} {p.name === 'Verona' && p.name}

{p.body}

))}
); } // ──────────────────────────────────────────────────────────────────── function TOContactCTA() { const isMobile = useIsMobile(); return (

See it at Sura Hawaii.
Then build yours.

Bring your floor plan and menu. We'll show you the live system and come back with a real quote.

Get in touch → See other products
); } function TOFooter() { const isMobile = useIsMobile(); return ( ); } function TableOrderPage() { return (
); } window.TableOrderPage = TableOrderPage;