// About page function ABLogoA({ size = 28 }) { return ( A ); } function ABNav() { const isMobile = useIsMobile(); const [open, setOpen] = React.useState(false); // close menu on link click / resize to desktop React.useEffect(() => { if (!isMobile) setOpen(false); }, [isMobile]); const links = [ { href: 'index.html#products', label: 'Products' }, { href: 'index.html#personas', label: 'Industries' }, { href: 'index.html#processing', label: 'Processing' }, { href: 'about.html', label: 'About', active: true }, { href: 'find-your-fit.html', label: 'Find your fit' }, ]; return ( ); } function ABHero() { const isMobile = useIsMobile(); return (
About us · Honolulu, Hawaii

Built by operators,
for operators.

We don't write software for restaurants from a corporate office. We run two of them ourselves. Aloha Smart System and Musubi Media are sister companies built around the same belief — that small-business owners in Hawaii deserve tools that match the way they actually work.

); } function ABStory() { const isMobile = useIsMobile(); return (
How we got here

Living through the reality of small business in Hawaii — until the experience itself became a solution.

Running a small business in Hawaii is a daily uphill climb. Labor costs keep rising. Hiring gets harder every year. Operating expenses leave less and less margin. In the middle of that reality, our founder Anthony Han spent two decades on the floor — operating dry cleaners, restaurants, karaoke lounges, and now Korean fried chicken stores.

The DNA came from family. A mother who ran restaurants in Korea, who taught the value of relentless effort. A father who invented things — who turned ideas into real, working products. Aloha Smart System is what happens when those two values meet — diligence and inventiveness, applied to the problems we live with every day.

That's why Aloha Smart System isn't just another POS. It's a field-centric solution — designed from the perspective of the boss working the floor, not the engineer in a meeting.

Anthony Han, founder of Aloha Smart System and Musubi Media
Anthony Han · Founder
Aloha Smart System · Musubi Media ↗
); } function ABQuote() { const isMobile = useIsMobile(); return (
Why we exist
{isMobile ? ( <>"POS isn't just a machine. It's a tool that makes a boss's day easier." ) : ( <>"POS isn't just a machine.
It's a tool that makes a boss's day easier." )}
— Anthony Han, founder
); } function ABCompanies() { const isMobile = useIsMobile(); return (
Two companies, one team

We build the system. And we drive the customers.

Most software companies hand you the tool and walk away. Most marketing agencies don't understand how a restaurant actually runs. We do both — under one roof, with one team that knows your floor.

{AB_COMPANIES.map(c => ( { if (isMobile) return; e.currentTarget.style.transform = 'translateY(-3px)'; e.currentTarget.style.boxShadow = '0 12px 36px rgba(14,26,36,0.10)'; }} onMouseLeave={e => { if (isMobile) return; e.currentTarget.style.transform = 'translateY(0)'; e.currentTarget.style.boxShadow = 'none'; }}>
{c.role}
{c.name}
{c.body}
    {c.items.map((it, i) => (
  • + {it}
  • ))}
{c.external ? 'musubimedia.net' : 'alohasmartsystem.com'} →
))}
); } function ABPrinciples() { const isMobile = useIsMobile(); return (
What we believe

Four principles. Everything else follows.

{AB_PRINCIPLES.map((p, i) => (
0{i + 1}
{p.k}
{p.v}
))}
); } function ABCustomers() { const isMobile = useIsMobile(); return (
Live in Honolulu

Stores actually running our system right now.

Every product on this site has been validated in a real, paying restaurant before we offered it. These are the stores that helped us prove it.

"After we installed the tablet ordering system, store operations improved noticeably and customer satisfaction went up. We strongly recommend Aloha Smart System for any restaurant."
— Owner, Sura Hawaii
{AB_CUSTOMERS.map(c => (
{c.name}
{c.loc}
{c.role}
{c.system}
))}
); } function ABFeatured() { const isMobile = useIsMobile(); return (
As featured in

Hawaii Korean community magazine

Featured in the Hawaii Korean community magazine — a profile on the founding story of Aloha Smart System and Soul Chicken Hawaii.

{[1, 2, 3].map(n => ( { if (!isMobile) e.currentTarget.style.transform = 'translateY(-4px)'; }} onMouseLeave={e => { if (!isMobile) e.currentTarget.style.transform = 'translateY(0)'; }}> {`Magazine ))}
); } function ABContact() { const isMobile = useIsMobile(); return (
Get in touch

Let's see if we're a fit.

Send a floor plan, a photo, or just a sentence about what you're trying to fix. We usually reply same day. Hawaii hours.

Email us Take the 60-second fit quiz
{[ ['Phone', '(808) 650-3331'], ['Email', 'info@alohasmartsystem.com'], ['Web', 'alohasmartsystem.com · musubimedia.net'], ['Based in', 'Honolulu, Hawaii'], ].map(([k, v]) => (
{k}
{v}
))}
); } function ABFooter() { return ( ); } function AboutPage() { return (
); } window.AboutPage = AboutPage;