// Home page const { useState: useStateH } = React; const PRODUCTS = [ { id: 'business-cards', name: 'Business Cards', priceLabel: 'from AED 99', img: 'media/business-cards-design-01.webp', fit: 'fit-bc-design', cat: 'Stationery' }, { id: 'flyers', name: 'Flyers & Leaflets', priceLabel: 'from AED 350', img: 'media/flyers-01.webp', fit: 'fit-flyer', cat: 'Marketing print' }, { id: 'roll-up', name: 'Roll-up Banners', priceLabel: 'from AED 145', img: 'media/roll-up-banner-01.webp', fit: 'fit-rollup', cat: 'Large format' }, { id: 'signage', name: 'Signage & Signboards', priceLabel: 'Quote on request', img: 'media/signage-01.webp', fit: 'fit-signage', cat: 'Signage' }, { id: 'exhibition', name: 'Exhibition & Events', priceLabel: 'Quote on request', img: 'media/exhibition-shell-scheme-01.webp', fit: 'fit-exhibit', cat: 'Exhibition' }, { id: 'tshirts', name: 'T-shirts & Merch', priceLabel: 'from AED 35', img: 'media/tshirt-printing-01.webp', fit: 'fit-tshirt', cat: 'Branded merch' }, { id: 'vehicle', name: 'Vehicle Wraps', priceLabel: 'Quote on request', img: 'media/vehicle-wraps-01.webp', fit: 'fit-vehicle', cat: 'Vehicle graphics' }, { id: 'letterheads', name: 'Letterheads & Stationery', priceLabel: 'from AED 350', img: 'media/letterheads-01.webp', fit: 'fit-letter', cat: 'Stationery' }, { id: 'canvas', name: 'Canvas Prints', priceLabel: 'Quote on request', img: 'media/canvas-printing-01.webp', fit: 'fit-canvas', cat: 'Wall art' }, ]; function ProductCard({ p, n }) { const { go } = useRouter(); return ( { e.preventDefault(); if (p.id === 'business-cards') go('product'); else go('products'); }}>
{p.name}
{String(n).padStart(2, '0')} / {p.cat}
{p.name}
{p.priceLabel.startsWith('Quote') ? ( {p.priceLabel} ) : ( From AED {p.priceLabel.replace('from AED ', '')} )}
); } function Home() { const { go } = useRouter(); return (
{/* Hero */}
Print · Sign · Exhibition — Est. Dubai

Business cards, banners & signage —
designed free, printed in 24 hours,
delivered free across the UAE.

Guaranteed lowest price. No advance payment. Open 24/7 sales desk on WhatsApp. From a 500-card express run to a full exhibition shell-scheme — one reliable partner.

Dubai · UAE
+971 55 166 8588
24/7
High-speed print press running a colorful job
Index 01 — On press, overnight color
{/* Product grid */}
{ e.preventDefault(); go('products'); }}>All services } />
{PRODUCTS.map((p, i) => )}
{/* Why us */}
01
Guaranteed lowest price

If you find the same job cheaper, we match it. We publish our prices as plain HTML — no surprises baked into a JPEG.

02
24-hour overnight runs

Order by 11am, pick up the next day by 7pm — or get it shipped free anywhere in the UAE. Express business cards turn round in 24h.

03
WhatsApp does the heavy lifting

Send artwork, ask questions, reorder a job — all over +971 55 166 8588, day or night.

{/* Portfolio teaser */}
{ e.preventDefault(); go('portfolio'); }}>View portfolio } />
CMYK on press
CMYK setup — 5,000 run
Retail roll-ups
Retail roll-ups
Shell-scheme stand
Shell-scheme stand
On press
Overnight flyer run
{/* CTA band */}
04 / Two ways to order

Send us your file, or tell us what you need — we'll quote in minutes.

Upload your artwork directly and we'll print it. Or describe the job and we'll come back with a price, free design and a delivery slot.

); } Object.assign(window, { Home, PRODUCTS });