/* 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)}
>
{/* 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.
)}
);
}
function ProductGroup({ title, items, dark, activeItem }) {
return (
);
}
Object.assign(window, { Nav });