// home.jsx — Home page sections const { useEffect: useEffectHome, useRef: useRefHome } = React; function HomeIntro({ setPage }) { return (
The work

Two ways we work the land.

Mamlakuwth is a Zimbabwean house with two trades that share one philosophy: see what others overlook, then make it useful, beautiful and lasting. Below ground, we recover minerals from tailings the industry walked past. Above ground, we farm heritage crops and welcome guests onto the estate.

setPage('minerals')}> 01 / Below

Mamlakuwth Minerals

Mineral processing and supply-chain consultancy for the energy transition. Feasibility, due diligence, optimisation, and re-mining of legacy waste — across Sub-Saharan Africa.

Explore minerals →
setPage('lands')}> 02 / Above

Mamlakuwth Lands

Rehoboth Farm — a 12.3-hectare integrated operation at Selous, Mashonaland West. Horticulture, greenhouses, broilers, Boer goats and five farm-stay chalets, run as one circular enterprise.

Explore lands →
); } function HomeStats() { const stats = [ { n: '16+', l: 'years of metallurgical and processing practice in Zimbabwe, South Africa and Zambia' }, { n: '14k oz', l: 'contained gold characterised across our Primrose & Tutonic tailings campaigns' }, { n: '12.3 ha', l: 'integrated farm at Selous — horticulture, greenhouses, broilers, goats, chalets' }, { n: '∞', l: 'co-products and tailings streams still waiting to be re-imagined' }, ]; return (
{stats.map((s, i) => (
{s.n} {s.l}
))}
); } function HomeMinerals({ setPage }) { const services = [ { n: '01', t: 'Feasibility studies', d: 'End-to-end technical and financial evaluation: sampling, laboratory testwork, grade-tonnage verification, bespoke flowsheets and integrated capex/opex models.' }, { n: '02', t: 'Technical due diligence', d: 'Independent assessment of ore characteristics, plant performance, optimisation upside and the alignment between resource and processing strategy.' }, { n: '03', t: 'Processing optimisation', d: 'Full-resource utilisation. We design for recoveries, waste reduction and mineral security across the full stream — not just the headline metal.' }, { n: '04', t: 'Legacy re-mining', d: 'Turning historical liabilities into economic and environmental value. Tailings, dumps and abandoned co-products reborn as commercial resources.' }, ]; return (
Minerals / What we do

Smarter extraction.
Total resource utilisation.

We deliver metallurgical, processing and supply-chain insights that improve project economics, reduce technical risk and unlock the material that traditional models leave behind.

{services.map(s => (
{s.n}

{s.t}

{s.d}

))}
); } function HomeFeature() { return (
Position

Africa’s share of the energy transition will not be decided in boardrooms abroad. It will be decided in our tailings dams, our co-product streams, and the way we choose to value what is already under our feet.

We believe the next decade of critical-mineral supply belongs to the operators willing to look twice — first at the orebody, then at everything around it.

); } function HomeLands({ setPage }) { const streams = [ { n: '01', t: 'Open-field horticulture', d: 'Potato, carrot, peas, onion and cabbage across 4.2 ha of rotated beds. Timed against the Zimbabwean market for festive and dry-season premium windows.' }, { n: '02', t: 'Greenhouse cropping', d: 'Four 500 m² tunnels growing tomato, English cucumber and coloured pepper year-round. Drip-fed from two boreholes, off-season pricing power.' }, { n: '03', t: 'Broiler poultry', d: 'A 10,000-bird broiler house running seven cycles a year. Integrated maize cropping cuts feed costs; litter is composted back onto the fields.' }, { n: '04', t: 'Boer & Kalahari goats', d: 'Meat-breed flock rotated across 1.7 ha of paddock. Chevon sold to Harare retail at USD 7–9/kg, slaughter timed to pre-Christmas premium.' }, ]; return (
Lands / Above ground

Five enterprises.
One circular farm.

Rehoboth Farm sits on 12.3 hectares of black clay and red clay loam outside Selous, Mashonaland West — 80 km from Harare, 15 km from Chegutu. Five enterprises are run as one integrated, self-financing operation, with each waste stream feeding the next.

{streams.map(s => (
{s.n}

{s.t}

{s.d}

))}
); } function HomeVisit({ setPage }) { return (
Visit / Agritourism

Stay a while.

Five thirty-square-metre farm-stay chalets in the southern homestead cluster. Off-grid solar, boma firepit, an open kitchen at the farmhouse, and the run of the fields between meals.

Two-night minimum. Greenhouse tours, poultry day, goat walk, and dinner with whatever the kitchen pulled out of the ground that morning.

    {[ ['From', 'USD 35–65 per night · full board option'], ['Capacity', '5 chalets · 10–12 guests'], ['Drive time', '80 km from Harare · 15 km from Chegutu'], ].map(([k, v], i) => (
  • {k}
  • ))}
); } function HomeProjects({ setPage }) { const projects = [ { n: '2010', t: 'Primrose Mine & Tutonic Dump', loc: 'Kwekwe & Filabusi, Zimbabwe', d: 'Full feasibility & technical due diligence on two gold tailings operations totalling 14,000+ oz contained gold. Bespoke metallurgical flowsheets and integrated financial model.' }, { n: '2016', t: 'Eastern Highlands Diamond Operation', loc: 'Manicaland, Zimbabwe', d: 'Specialist mineral-processing input to investor-led due diligence. Ore characterisation, plant performance and alignment of resource attributes to processing strategy.' }, { n: '2022', t: 'Copper Co-Product Strategy', loc: 'Zambian Copperbelt', d: 'Co-product-first recovery strategy for cobalt, nickel and rare-earth phases inside an active copper concentrator stream. (Engagement details NDA-bound.)' }, ]; return (
Projects / Selected work

Below the surface, on record.

A short slate of representative engagements across Zimbabwe, Zambia and South Africa. Many more sit under non-disclosure.

{projects.map((p, i) => (
setPage('projects')} style={{ cursor: 'pointer' }}> {p.n}

{p.t}

{p.d}

{p.loc} Read →
))}
); } function HomeCTA({ setPage }) { return (
Begin the conversation

We answer all serious enquiries within two working days.

); } function Home({ hero, subBrand, setSubBrand, setPage, sectionOrder }) { const sections = { intro: , stats: , minerals: , feature: , lands: , visit: , projects: , cta: , }; return (
View as
{sectionOrder.map(id => sections[id])}
); } window.Home = Home;