@extends('layouts.site') @php // Static article data — will be replaced by DB lookup when CMS seeder runs $articles = [ 'why-east-africa-needs-super-app' => [ 'title' => 'Why East Africa Needs Its Own Super App — And Why Zuma Is Building It', 'category' => 'Company', 'date' => 'June 2025', 'read' => 8, 'image' => 'https://images.unsplash.com/photo-1611348586804-61bf6c080437?w=1400&q=80', 'excerpt' => 'The average Nairobi resident has seven apps just to manage daily life. Zuma is building the infrastructure to replace them all.', 'body' => '

The Seven-App Problem

Walk into any coffee shop in Nairobi, Kampala or Dar es Salaam and watch what people do on their phones. They\'ll open Bolt for a ride, M-Pesa for a payment, Jumia for a product, Glovo for food, LinkedIn for a job lead, and three different bank apps to check balances. Seven apps. Seven passwords. Seven different wallets. Seven sets of customer support numbers to call when something goes wrong.

This is the daily digital reality for urban East Africans — and it\'s exhausting, expensive, and inefficient. Zuma was founded specifically to end it.

The Super App Model

WeChat in China started as a messaging app and became the operating system of daily life — payments, shopping, government services, healthcare, and more, all in one place. Grab in Southeast Asia did the same thing for transport then expanded into food, finance, and healthcare. Gojek in Indonesia built a billion-dollar company on the same principle.

The insight behind all of them is simple: once you have trust and a payment relationship with a user, the marginal cost of adding the next service is almost zero. Users don\'t want more apps. They want fewer, better ones.

What Zuma Is Building

Zuma launched with 15 integrated services: ride hailing, food delivery, pharmacy and healthcare, e-commerce, real estate, jobs and freelance, courier and logistics, travel and hotels, social media management, a multi-currency wallet, AI-backed credit scoring, instant loans, Buy Now Pay Later, an affiliate programme, and a finance hub for entrepreneurs.

Every service shares the same wallet, the same KYC, the same customer support, and the same AI engine. A customer who earns affiliate commissions can use those earnings to pay for a ride, order medicine, or put a deposit on a rental apartment — without ever switching apps.

', ], 'ride-hailing-east-africa' => [ 'title' => 'Zuma Rides: How AI Surge Pricing Works — And Why It\'s Fairer Than You Think', 'category' => 'Ride Hailing', 'date' => 'June 2025', 'read' => 7, 'image' => 'https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1400&q=80', 'excerpt' => 'Surge pricing gets a bad reputation. Here\'s how Zuma uses AI to compute fair fares in real time — and why it benefits both drivers and riders.', 'body' => '

The Problem with Fixed Fares

Traditional taxi apps use fixed per-kilometre rates, which creates a predictable problem: when it rains in Nairobi, demand spikes by 400% but supply stays the same. Every driver is already booked. Riders wait 40 minutes or give up.

Surge pricing was invented to solve this. It raises fares during peak demand, which does two things simultaneously: it signals drivers to come online, and it reduces demand by pricing out riders who don\'t urgently need a car.

How Zuma\'s AI Surge Engine Works

Every 90 seconds, the Zuma AI engine evaluates: (1) the number of active drivers within 5km of each demand cluster, (2) the number of pending ride requests in the same area, and (3) historical patterns for that time, day, and location. From those three inputs, it computes a surge multiplier from 1.0x (no surge) to 2.5x (maximum surge).

The formula is simple: if supply ÷ demand drops below 0.6, surge kicks in. We cap it at 2.5x because beyond that, riders switch to alternatives and the problem becomes self-correcting anyway.

', ], 'zuma-health-pharmacy' => [ 'title' => 'Zuma Health: Bringing Digital Pharmacy to East Africa', 'category' => 'Healthcare', 'date' => 'June 2025', 'read' => 9, 'image' => 'https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1400&q=80', 'excerpt' => 'Prescription drugs at your door, doctor consultations by video, lab tests booked in one tap.', 'body' => '

The Healthcare Access Gap

In Kenya, Uganda and Tanzania, the average person lives 8km from the nearest licensed pharmacy. In rural areas, that distance is 40km. Even in cities, the pharmacy nearest you may not stock what you need, may be closed by the time you arrive, or may require you to queue for 45 minutes.

What Zuma Health Offers

Medicine Delivery: Browse over 500 medicines across 30+ categories — OTC painkillers, antibiotics, chronic disease medication, baby care, vitamins, and more. All medicines are sourced exclusively from licensed pharmacies.

Prescription Handling: For prescription-only medicines, upload a photo of your prescription during checkout. Our in-house pharmacist verifies it within 30 minutes during business hours.

Doctor Consultations: Book a video or chat consultation with a licensed doctor from KES 500. Available same-day.

Lab Test Booking: Book blood tests, malaria rapid tests, diabetes screening, and other common diagnostic tests. Choose home collection or appointment at a partner lab.

', ], 'default' => [ 'title' => 'Zuma Blog', 'category' => 'Company', 'date' => 'June 2025', 'read' => 5, 'image' => 'https://images.unsplash.com/photo-1611348586804-61bf6c080437?w=1400&q=80', 'excerpt' => 'Insights and updates from the Zuma team.', 'body' => '

This article is being prepared. Check back soon for the full story.

', ], ]; $article = $articles[$slug] ?? $articles['default']; // Try loading from DB if available try { $dbPost = \App\Models\BlogPost::where('slug', $slug)->where('status', 'published')->first(); if ($dbPost) { $article = [ 'title' => $dbPost->title, 'category' => $dbPost->category, 'date' => $dbPost->published_at?->format('F Y') ?? 'June 2025', 'read' => $dbPost->read_time_minutes, 'image' => $dbPost->featured_image ?? $article['image'], 'excerpt' => $dbPost->excerpt, 'body' => $dbPost->body, ]; } } catch (\Exception $e) { /* DB not ready — use static fallback */ } @endphp @section('title', $article['title'] . ' — Zuma Blog') @section('description', $article['excerpt']) @push('styles') @endpush @section('content')
{{ $article['category'] }}

{{ $article['title'] }}

@endsection