// pages-minerals.jsx — Minerals service page + Projects case studies
function MineralsPage({ setPage }) {
const services = [
{
n: '01', t: 'Feasibility studies & technical due diligence',
d: 'End-to-end evaluation: sampling campaigns, laboratory testwork, grade-tonnage verification, bespoke metallurgical flowsheets, plant configuration, and integrated financial models covering capex, opex, recoveries and project economics.',
points: ['Resource sampling & QA/QC', 'Bench and pilot test programmes', 'Flowsheet design & trade-off studies', 'Bankable financial models'],
},
{
n: '02', t: 'Processing optimisation & waste reduction',
d: 'Total-resource thinking. We design for recoveries across the full mineral assemblage, identify the bottlenecks throttling your concentrator, and reduce the volume and grade of what leaves as tails.',
points: ['Plant audit & circuit modelling', 'Reagent and comminution strategy', 'Recovery upside studies', 'Tailings reduction programmes'],
},
{
n: '03', t: 'Co-product-first recovery strategies',
d: 'Most operations are designed around one headline metal. We map the by-products and co-products travelling through your circuit, then build a recovery strategy that treats them as primary, not residual.',
points: ['Co-product mapping & valuation', 'Stream-by-stream recovery design', 'Marketability & off-take research', 'Critical-mineral integration plans'],
},
{
n: '04', t: 'Remining of legacy waste & tailings',
d: 'Many of Africa’s historical dumps were deposited when recoveries were poor and prices were lower. We assess, characterise and re-engineer those liabilities into active resources.',
points: ['Dump & tailings characterisation', 'Re-mining economic studies', 'Environmental remediation modelling', 'Closure-cost offset programmes'],
},
];
return (
{/* Hero image */}
{/* Belief */}
Position
Total resource utilisation is not a sustainability slogan. It
is the cheapest critical-mineral supply available to Africa,
and it sits inside circuits we already operate.
The energy transition has changed which metals matter and how
they move. Lithium, cobalt, nickel, rare-earths, copper — many
of them already pass through Sub-Saharan plants as
co-products, by-products or losses to tails.
Mamlakuwth Minerals exists to surface that value. We bridge
geology, metallurgy and market realities so investors and
operators can move on resources others have not yet
priced.
We are practitioners. Every engagement begins with sample in
hand and ends with a number you can defend.
{/* Services */}
Practice areas
Four areas of work.
Each engagement is bespoke; the philosophy is constant. We are conservative on numbers, generous on transparency, and we never bury a risk in a footnote.
{services.map(s => (
{s.n}
{s.t}
{s.d}
{s.points.map((p, i) => (
▸{p}
))}
))}
{/* Geography */}
Geographic focus
Where we work.
Sub-Saharan Africa, with deep operating experience in three jurisdictions and selective engagements elsewhere.
{[
{ c: 'Zimbabwe', s: 'Home market. Gold tailings, diamond processing, chrome and PGM co-products. Operating since 2010.' },
{ c: 'South Africa', s: 'Selected engagements in gold, PGM and tailings re-mining. Strong partner laboratory network.' },
{ c: 'Zambia', s: 'Copperbelt co-product strategy, particularly cobalt and nickel. Active investor mandates.' },
].map((p, i) => (
0{i+1}
{p.c}
{p.s}
))}
{/* CTA */}
Engage
Bring us your sample, your dump or your due-diligence problem.
);
}
function ProjectsPage({ setPage }) {
const [filter, setFilter] = React.useState('all');
const projects = [
{
year: '2010', t: 'Primrose Mine — Gold Tailings Feasibility',
loc: 'Kwekwe, Zimbabwe', tag: 'gold',
bullet: 'Feasibility study & technical due diligence',
body: 'End-to-end sampling, laboratory testwork and grade-tonnage verification on a historic gold tailings deposit. Bespoke flowsheet design aligned to material characteristics, plant configuration, operating philosophy and a full capex/opex financial model.',
stat: '14,000+ oz', statL: 'contained gold characterised (combined with Tutonic)',
},
{
year: '2010', t: 'Tutonic Dump — Gold Tailings Feasibility',
loc: 'Filabusi, Zimbabwe', tag: 'gold',
bullet: 'Feasibility study & technical due diligence',
body: 'Companion engagement to Primrose. Integrated sampling and testwork programme, with metallurgical flowsheet, operating-philosophy definition, and a bankable financial model for project developers and equity providers.',
stat: '2', statL: 'sites delivered under one integrated investor mandate',
},
{
year: '2016', t: 'Diamond Operation — Mineral Processing DD',
loc: 'Eastern Highlands, Zimbabwe', tag: 'diamond',
bullet: 'Investor-led technical due diligence',
body: 'Specialist mineral-processing input to investor-led due diligence on an active diamond operation. Ore-characteristic assessment, plant performance review, identification of optimisation and recovery upside, and a candid view on the technical risks and alignment between resource and processing strategy.',
stat: '6', statL: 'optimisation interventions identified, three implemented',
},
{
year: '2019', t: 'PGM Tailings Re-mining Pre-feasibility',
loc: 'Bushveld Complex, South Africa', tag: 'pgm',
bullet: 'Pre-feasibility & flowsheet trade-off',
body: 'Tailings re-mining pre-feasibility on a historical platinum-group dump. Comminution and flotation trade-off studies, recovery scenarios across two reagent suites, environmental closure offset modelling, and an indicative go/no-go for the asset owner.',
stat: 'PFS', statL: 'pre-feasibility delivered in 14 weeks',
},
{
year: '2022', t: 'Copper Concentrator Co-Product Strategy',
loc: 'Zambian Copperbelt', tag: 'copper',
bullet: 'Co-product-first recovery strategy (NDA)',
body: 'Co-product mapping and recovery strategy for cobalt, nickel and rare-earth phases moving through an active copper concentrator. Stream-by-stream characterisation, recovery flowsheet options, off-take landscape and a phased implementation plan. Engagement details NDA-bound.',
stat: '3', statL: 'critical-mineral streams scoped as primary outputs',
},
{
year: '2024', t: 'Chrome Co-Product Recovery Audit',
loc: 'Great Dyke, Zimbabwe', tag: 'chrome',
bullet: 'Plant audit & co-product recovery upside',
body: 'Three-week onsite audit of a chrome concentrator with a view to recovering PGM phases historically lost to tails. Mass-balance reconciliation, audit-grade sampling, and a stage-gated recovery plan with capex/opex envelopes.',
stat: '3 wk', statL: 'onsite audit, 6 weeks reporting',
},
];
const tags = ['all', 'gold', 'diamond', 'pgm', 'copper', 'chrome'];
const filtered = filter === 'all' ? projects : projects.filter(p => p.tag === filter);
return (
Filter
{tags.map(t => (
))}
{filtered.map((p, i) => (
{p.year}
{p.tag}
{p.bullet}
{p.t}
{p.loc}
{p.body}
{p.stat}{p.statL}
))}
{filtered.length === 0 && (
No projects match this filter — yet.
)}
More work under NDA. Ask us about your asset class.