/* testimonials.jsx — placeholder quotes (client to supply real ones) */ const QUOTES = [ { quote: 'They rebuilt our site and our rankings in the same quarter. Organic enquiries are up and we finally understand where every lead comes from.', name: 'John', role: 'Managing Director · E-commerce', }, { quote: 'The automation work alone paid for the engagement. Leads are captured and nurtured before we even pick up the phone.', name: 'Eric', role: 'Head of Marketing · SaaS', }, { quote: 'No waffle, no buzzwords. Every month we get numbers, context and a clear plan for what happens next.', name: 'Maria', role: 'Founder · Professional Services', }, ]; function Testimonials() { const { Avatar } = window.MacnitechDesignSystem_13fddf; return (
Results before rhetoric

What clients say.

Placeholder quotes — share real client testimonials and we'll drop them in.

{QUOTES.map((q, i) => (
{[0, 1, 2, 3, 4].map((s) => )}
“{q.quote}”
{q.name}
{q.role}
))}
); } Object.assign(window, { Testimonials });