/* global React, Logo */ const { useState: useStateNav, useEffect: useEffectNav } = React; // ============ NAVIGATION with mega-menu ============ function Nav({ variant = "light" }) { const [openMenu, setOpenMenu] = useStateNav(null); const [scrolled, setScrolled] = useStateNav(false); useEffectNav(() => { const onScroll = () => setScrolled(window.scrollY > 8); window.addEventListener("scroll", onScroll); return () => window.removeEventListener("scroll", onScroll); }, []); const dark = variant === "dark"; const isSubdir = window.location.pathname.includes("/products/"); const prefix = isSubdir ? "../../" : ""; const navItems = [ { label: "Products", key: "products", href: "#" }, { label: "Industries", key: "industries", href: `${prefix}index.html#industries` }, { label: "Projects", key: "projects", href: `${prefix}index.html#projects` }, { label: "Blog", key: "blog", href: "#" }, { label: "Company", key: "company", href: `${prefix}company.html` }, { label: "Careers", key: "careers", href: `${prefix}careers.html` }, { label: "Contact", key: "contact", href: `${prefix}contact.html` }, ]; return (
setOpenMenu(null)} >
Talk to engineer
{/* Mega-menu: products */} {openMenu === "products" && (
{/* Column 1: Effervescent & Drying */}
{/* Column 2: Granulation & Pelletization */}
{/* Column 3: Blending & Handling Systems */}
{/* Featured card */}
Featured Product
Rapid Mixer Granulator
High-shear wet granulation engineered for rapid blending and uniform particle size. Compliant with cGMP standards.
Explore
)}
); } function ProductGroup({ title, items, dark, activeItem }) { return (
{title}
{items.map(it => ( { if (it.name !== activeItem) e.currentTarget.style.color = dark ? "white" : "var(--ink)"; }} onMouseLeave={e => { if (it.name !== activeItem) e.currentTarget.style.color = dark ? "rgba(255,255,255,0.75)" : "var(--ink-2)"; }} > {it.name} {it.name === activeItem && Active} ))}
); } Object.assign(window, { Nav });