@php $achievements = [ [ 'title' => 'African Business Heroes', 'subtitle' => '1st Runner-Up among 31,000+ applicants', 'year' => '2025', ], [ 'title' => 'Google Black Founders Fund Africa', 'subtitle' => 'One of 25 selected out of 4,000+', 'year' => '2023', ], [ 'title' => 'Retail Business Automation Solution of the Year', 'subtitle' => 'Digital Tech 100 Awards', 'year' => '2023', ], [ 'title' => 'Silver Winner – Best E-commerce Software Solution', 'subtitle' => 'Kenya Ecommerce Awards', 'year' => '2023', ], [ 'title' => 'Retail Business Automation Solution of the Year', 'subtitle' => 'Digital Tech 100 Awards', 'year' => '2022', ], [ 'title' => 'Best SaaS Solution (Gold)', 'subtitle' => 'Kenya E-commerce Awards', 'year' => '2022', ], [ 'title' => 'Best E-commerce Solution (Silver)', 'subtitle' => 'Kenya E-commerce Awards', 'year' => '2022', ], [ 'title' => 'Best E-commerce Solution (Silver)', 'subtitle' => 'Kenya E-commerce Awards', 'year' => '2021', ], [ 'title' => 'Google for Startups Accelerator Africa', 'subtitle' => 'One of 20 selected out of 3,000+', 'year' => '2020', ], [ 'title' => '2nd Runner-Up', 'subtitle' => 'Total Startupper Challenge', 'year' => '2019', ], ]; $timelineYears = collect($achievements) ->sortByDesc(fn (array $item) => (int) $item['year']) ->groupBy('year'); $featuredMedia = [ [ 'image' => 'abh-2025-winners.jpg', 'alt' => 'Abraham Mbuthia on stage at the 7th Africa Business Heroes Awards Ceremony in Kigali', 'label' => 'ABH 2025 Finale', ], [ 'image' => 'abh-head.png', 'alt' => 'Abraham Mbuthia, Co-founder and CEO of Uzapoint', 'label' => 'Co-founder & CEO', 'portrait' => true, ], [ 'image' => 'kenya-ecommerce-2023.jpg', 'alt' => 'Uzapoint team at the Kenya E-Commerce Awards 2023', 'label' => 'Kenya E-Commerce Awards', ], ]; @endphp
Industry Recognition

Our Award-Winning Excellence

Each accolade underscores our commitment to transforming African commerce.

@foreach ($timelineYears as $year => $items)
{{ $year }}
@foreach ($items as $item)

{{ $item['title'] }}

{{ $item['subtitle'] }}

@endforeach
@endforeach