// ============================================================ // Noble Design Asia — Top: Nav + Hero // ============================================================ // ------------- NAV ------------- function Nav() { const [scrolled, setScrolled] = React.useState(false); const [open, setOpen] = React.useState(false); React.useEffect(() => { const h = () => setScrolled(window.scrollY > 40); window.addEventListener('scroll', h, { passive: true }); return () => window.removeEventListener('scroll', h); }, []); const links = [ ["Home", "#top"], ["Materials", "#materials"], ["Services", "#services"], ["Portfolio", "#portfolio"], ["Voices", "#voices"], ["Contact", "#contact"], ]; return ( <>
NOBLE Design Asia Design My Space
{links.map(([label, href]) => ( setOpen(false)} className="text-4xl font-[500]">{label} ))} setOpen(false)} className="eyebrow text-gold mt-6">Design My Space →
); } // ------------- HERO ------------- function Hero() { return (
Contemporary Jakarta residence living room designed by Noble Design Asia, featuring teak joinery and natural light
Jakarta · Bali · Est. 2014 Interior · Renovation · Fit-Out

complete, quietly premium interior design service for homes and offices.

Turn-Key Design, Renovation & Fit-Out in Jakarta & Bali

A calm, end-to-end design service for homes and offices. Designed with restraint, built with care, and delivered fully finished.

Design My Space View Projects
); } Object.assign(window, { Nav, Hero });