/* global React, MachineRender */ const { useState: useS3, useEffect: useE3 } = React; // ============ GLOBAL PROJECTS MAP ============ function ProjectsMap() { const [active, setActive] = useS3("egypt"); const [filter, setFilter] = useS3("all"); const projects = [ { id: "india", country: "India", x: 70, y: 52, client: "Cipla Health", solution: "EFF-PACK 100", outcome: "1M tablets/shift", industry: "pharma" }, { id: "egypt", country: "Egypt", x: 56, y: 50, client: "Pharco Pharmaceuticals", solution: "Complete EFF Line", outcome: "Multi-product flexibility", industry: "pharma" }, { id: "germany", country: "Germany", x: 52, y: 36, client: "Confidential", solution: "RMG + FBD", outcome: "Validated batch consistency", industry: "pharma" }, { id: "brazil", country: "Brazil", x: 32, y: 65, client: "Hypera Pharma", solution: "EFF-PACK 4T", outcome: "Effervescent expansion", industry: "nutra" }, { id: "usa", country: "USA", x: 18, y: 42, client: "Confidential", solution: "Tablet Coater", outcome: "FDA-ready installation", industry: "pharma" }, { id: "indonesia", country: "Indonesia", x: 80, y: 64, client: "Konimex", solution: "EFF-PRO + EFF-PACK", outcome: "Regional capacity scale-up", industry: "nutra" }, { id: "uae", country: "UAE", x: 60, y: 52, client: "Julphar", solution: "Granulation Line", outcome: "GCC market growth", industry: "pharma" }, ]; const filtered = filter === "all" ? projects : projects.filter(p => p.industry === filter); const a = projects.find(p => p.id === active); return (
Global proof

Built for manufacturers across markets, environments, and scales.

{[["all", "All"], ["pharma", "Pharma"], ["nutra", "Nutraceutical"]].map(([id, lbl]) => ( ))}
{/* Map */}
{/* dotted continent shapes — abstract */} {/* Approximate landmasses */} {/* Pins */} {filtered.map(p => ( setActive(p.id)}> {active === p.id && ( )} ))} {/* Map legend */}
{filtered.length} installations · {new Set(filtered.map(p => p.country)).size} countries
Live project map
{/* Card */}
{a.country} · {a.industry === "pharma" ? "Pharmaceutical" : "Nutraceutical"}

{a.client}

Solution {a.solution}
Outcome {a.outcome}
Year 2024
Status ● Operational
{/* Other pins */}
{filtered.filter(p => p.id !== active).map(p => ( ))}
); } // ============ ENGINEERING EXCELLENCE — sticky scroll ============ function EngExcellence() { const [active, setActive] = useS3(0); const features = [ { num: "01", title: "cGMP-oriented design", body: "Cleanable, contained, and validatable surfaces and structures from concept onward — not retrofitted for compliance." }, { num: "02", title: "21 CFR Part 11-ready architecture", body: "Audit trail messaging, electronic signatures, and recipe management ready for regulated environments where applicable." }, { num: "03", title: "PLC-based automation", body: "Centralized PLC control with HMI panels designed for operator clarity, recipe libraries, and supervisory data export." }, { num: "04", title: "Engineered for high throughput", body: "Continuous-motion designs that sustain throughput at the upper end of OSD volumes — without sacrificing rejection rates." }, { num: "05", title: "Low-rejection precision", body: "Laser sensors and closed-loop verification at every critical transfer to keep rejection rates measurable in tenths of a percent." }, { num: "06", title: "After-sales partnership", body: "Installation, validation, training, spares, and remote support — engineered into the relationship, not bolted on." }, ]; return (
Engineering excellence

Six commitments that show up on every shop floor.

Feature {features[active].num}
Now showing
{features[active].title}
{features.map((f, i) => (
setActive(i)} style={{ padding: "28px 0", borderBottom: "1px solid var(--line)", cursor: "pointer", transition: "all 200ms", opacity: active === i ? 1 : 0.5, }} >
{f.num}

{f.title}

{f.body}

))}
); } // ============ TESTIMONIALS ============ function Testimonials() { const [i, setI] = useS3(0); const t = [ { quote: "Mark Maker's effervescent line transformed our throughput. The EFF-PACK 100 has been operational at 1.1 million tablets per shift, consistently — well above our original target.", name: "Ahmed Khalil", role: "Plant Director", company: "Pharco Pharmaceuticals", country: "Egypt", solution: "Complete EFF Line" }, { quote: "What sold us was the engineering rigor — every spec they quoted held up in commissioning. The HMI and audit trail integrated cleanly into our existing QMS.", name: "Maria Santos", role: "Production Manager", company: "Hypera Pharma", country: "Brazil", solution: "EFF-PACK 4T" }, { quote: "The granulation line is forgiving, validated, and clean. Quick changeover between products is genuinely fast — not the marketing-fast you sometimes see.", name: "Rajesh Verma", role: "VP Manufacturing", company: "Cipla Health", country: "India", solution: "RMG + FBP" }, ]; const cur = t[i]; return (
Customer proof

"{cur.quote}"

{cur.name.split(" ").map(n => n[0]).join("")}
{cur.name}
{cur.role} · {cur.company}
{cur.solution} {cur.country}
{t.map((other, idx) => ( ))}
); } // ============ FINAL CTA ============ function FinalCTA() { return (
Project consultation

Planning a new processing or packaging line?

Speak with Mark Maker's engineering team about machine selection, capacity studies, layout planning, and complete-line integration.

Quick contact
); } function ContactRow({ label, value }) { return (
{label} {value}
); } // ============ FOOTER ============ function Footer() { return ( ); } Object.assign(window, { ProjectsMap, EngExcellence, Testimonials, FinalCTA, Footer });