// Musubi Display Network — page function DNLogoA({ size = 28 }) { return ( A ); } function DNNav() { const isMobile = useIsMobile(); const [open, setOpen] = React.useState(false); const links = [ ['../index.html#products', 'Products'], ['../index.html#personas', 'Industries'], ['../index.html#processing', 'Processing'], ['../about.html', 'About'], ['../find-your-fit.html', 'Find your fit'], ]; return ( ); } function DNHero() { const isMobile = useIsMobile(); return (
← All products
Musubi Display Network · part of Aloha Smart System

Your TVs,
monetized.

One screen, every job. Order numbers, your menu, sale items, local news, sports, in-language headlines, and your custom ads — all running together. Plugged into Clover so promos update themselves.

Light up your TVs → See how it works
{[['Live now', 'Soul Chicken · Midtown Eats'], ['Languages', 'EN · KR · JP · ZH'], ['Update lag', '< 5 sec from Clover']].map(([k, v]) => (
{k}
{v}
))}
{/* Photo mosaic — horizontal + portrait overlap */}
{/* Horizontal central board */}
Midtown Eats central board running Musubi Display Network
MIDTOWN EATS · CENTRAL BOARD
{/* Portrait pickup */}
Soul Chicken pickup display running Musubi Display Network
SOUL CHICKEN · PICKUP
{/* Floating live ticker chip */}
● Now playing
Korean news · 韓国語ニュース
+ 1,752 ready · QR giveaway live
); } function DNAudience() { const isMobile = useIsMobile(); return (
Who it's for

Any room with a TV becomes a channel.

Built for Hawaii small businesses — restaurants, markets, bars, beauty shops. Same hardware, same software. The content adapts to your floor.

{DN_AUDIENCE.map(a => (
{a.emoji}
{a.label}
{a.sub}
))}
); } function DNModes() { const isMobile = useIsMobile(); return (
One screen, three jobs

The TV runs three things at once.
Guests never get bored.

{/* Diagram */}
{/* News + weather */}
📺 News + Weather
{/* Order numbers */}
1752 📋 Pickup
{/* Promo footer */}
🎁 Promos + QR giveaway
{/* Modes list */}
{DN_MODES.map((m, i) => { const colors = [DN_C.gold, DN_C.crimson, DN_C.glowMagenta]; return (
{m.title}
{m.body}
); })}
); } function DNContent() { const isMobile = useIsMobile(); return (
Content mix

Six channels of content.
You pick the rotation.

Mix and match for your room. Bar wants more sports. Korean BBQ wants Korean news. Convenience store wants near-expiry promos. We tune it once, then it runs itself.

{DN_CONTENT.map((c, i) => (
{c.tag}
{c.label}
{c.body}
))}
); } function DNClover() { const isMobile = useIsMobile(); return (
Clover integration

The TV updates itself.

Two-way Clover sync. Your menu, your specials, your sale stickers, your order numbers — all flow into the screen automatically. You change a price in Clover; the TV reflects it within seconds.

The shortcut
You don't open a separate app to "publish" promos. You manage your menu in Clover like always. The screen just listens.
{DN_CLOVER.map((c, i) => (
{c.icon}
{c.label}
{c.body}
))}
); } function DNDesigner() { const isMobile = useIsMobile(); return (
No designer needed

Upload a photo. That's the design.

Most digital signage forces you to hire a designer or buy a $100/mo template app. We hand you a library of pre-built layouts that look like real campaigns — drop in your photo and a one-line description, you're live.

{DN_AUTOMATION.map((a, i) => (
{a.k}
{a.v}
))}
); } function DNLayouts() { const isMobile = useIsMobile(); return (
Live builds

Two flavors. Same system.

Horizontal central boards for rooms with one big screen. Portrait pickup displays for counters and walls. Most stores run both — same content, two presentations.

{DN_LAYOUTS.map((l, i) => (
{l.label}
{l.label}
{l.sub}
))}
); } function DNData() { const isMobile = useIsMobile(); return (
Marketing flywheel

The TV doesn't just inform — it captures.

Every visitor scans the QR for a chance to win something. You get phone numbers and emails. Now you can text them when they haven't been back in 30 days.

{DN_DATA_FEATURES.map((d, i) => (
{d.icon}
{d.label}
{d.body}
))}
); } function DNOffer() { const isMobile = useIsMobile(); return (
What you get

One package. End-to-end.

{DN_OFFER.map((o, i) => (
Included
{o.k}
{o.v}
))}
); } function DNContact() { const isMobile = useIsMobile(); return (
Get started

Light up your TVs.

Send us your floor plan or a photo of your existing TVs. We'll come back with a layout proposal, a content rotation, and a number — usually same day.

Get in touch → Take the 60-second fit quiz
Built in Honolulu · Clover-authorized · (808) 650-3331
); } function DNFooter() { return ( ); } function DisplayNetworkPage() { return (
); } window.DisplayNetworkPage = DisplayNetworkPage;