<?php
// Dummy member listings — swap for DB in Phase 2.
// `featured` marks businesses that show on home page.
// `tier` drives which banner/badge they get.

return [
    [
        'id' => 1, 'slug' => 'lowveld-harvest-cafe',
        'name' => 'Lowveld Harvest Café',
        'category' => 'restaurants',
        'tier' => 'Platinum',
        'featured' => true,
        'description' => 'Farm-to-table breakfast and lunch spot in central Nelspruit, sourcing produce from local growers.',
        'phone' => '013 555 0101', 'email' => 'hello@lowveldharvest.co.za',
        'website' => 'https://example.com/lowveldharvest',
        'address' => '12 Ferreira St, Nelspruit',
    ],
    [
        'id' => 2, 'slug' => 'kruger-craft-coffee',
        'name' => 'Kruger Craft Coffee Roasters',
        'category' => 'coffee',
        'tier' => 'Gold',
        'featured' => true,
        'description' => 'Small-batch coffee roasters supplying cafés across Mpumalanga with freshly roasted single-origin beans.',
        'phone' => '013 555 0102', 'email' => 'orders@krugercraft.co.za',
        'website' => 'https://example.com/krugercraft',
        'address' => '45 Louis Trichardt St, White River',
    ],
    [
        'id' => 3, 'slug' => 'mpumalanga-plumbers',
        'name' => 'Mpumalanga Plumbers',
        'category' => 'plumbing',
        'tier' => 'Silver',
        'featured' => false,
        'description' => 'Licensed plumbing services for residential and commercial clients. 24-hour emergency callouts.',
        'phone' => '013 555 0103', 'email' => 'info@mpplumbers.co.za',
        'website' => 'https://example.com/mpplumbers',
        'address' => '78 Bester St, Nelspruit',
    ],
    [
        'id' => 4, 'slug' => 'lowveld-law-chambers',
        'name' => 'Lowveld Law Chambers',
        'category' => 'law',
        'tier' => 'Gold',
        'featured' => true,
        'description' => 'Commercial, property and family law. Serving Mbombela and surrounding areas since 2008.',
        'phone' => '013 555 0104', 'email' => 'reception@llc.law.za',
        'website' => 'https://example.com/llc',
        'address' => '101 Paul Kruger St, Nelspruit',
    ],
    [
        'id' => 5, 'slug' => 'bushveld-builders',
        'name' => 'Bushveld Builders',
        'category' => 'construction',
        'tier' => 'Platinum',
        'featured' => true,
        'description' => 'NHBRC-registered residential builders specialising in lifestyle estates and custom homes.',
        'phone' => '013 555 0105', 'email' => 'projects@bushveldbuilders.co.za',
        'website' => 'https://example.com/bushveldbuilders',
        'address' => '4 Industria Rd, Mbombela',
    ],
    [
        'id' => 6, 'slug' => 'wild-fig-florals',
        'name' => 'Wild Fig Florals',
        'category' => 'gifts',
        'tier' => 'Silver',
        'featured' => false,
        'description' => 'Local flower grower and florist. Weddings, events, weekly office arrangements.',
        'phone' => '013 555 0106', 'email' => 'hello@wildfigflorals.co.za',
        'website' => 'https://example.com/wildfig',
        'address' => '23 Van Niekerk St, White River',
    ],
    [
        'id' => 7, 'slug' => 'panorama-IT',
        'name' => 'Panorama IT Solutions',
        'category' => 'it-services',
        'tier' => 'Gold',
        'featured' => false,
        'description' => 'Managed IT services, cloud migration, and on-site repairs for small to medium businesses.',
        'phone' => '013 555 0107', 'email' => 'support@panorama-it.co.za',
        'website' => 'https://example.com/panorama',
        'address' => '56 Streak St, Nelspruit',
    ],
    [
        'id' => 8, 'slug' => 'mountain-view-accommodation',
        'name' => 'Mountain View Guest House',
        'category' => 'accommodation',
        'tier' => 'Platinum',
        'featured' => true,
        'description' => 'Boutique guest house with 8 rooms, mountain views, and a reputation for exceptional breakfasts.',
        'phone' => '013 555 0108', 'email' => 'bookings@mountainview.co.za',
        'website' => 'https://example.com/mountainview',
        'address' => 'Plot 42, R40 White River',
    ],
    [
        'id' => 9, 'slug' => 'lowveld-fresh-bakery',
        'name' => 'Lowveld Fresh Bakery',
        'category' => 'bakers',
        'tier' => 'Bronze',
        'featured' => false,
        'description' => 'Daily sourdough, pastries, and custom celebration cakes. Family-run since 1987.',
        'phone' => '013 555 0109', 'email' => 'orders@lowveldfresh.co.za',
        'website' => 'https://example.com/lowveldfresh',
        'address' => '18 Brown St, Nelspruit',
    ],
    [
        'id' => 10, 'slug' => 'savanna-security',
        'name' => 'Savanna Security Services',
        'category' => 'security',
        'tier' => 'Gold',
        'featured' => false,
        'description' => 'Armed response, alarm monitoring, and commercial guarding across the Lowveld region.',
        'phone' => '013 555 0110', 'email' => 'control@savannasec.co.za',
        'website' => 'https://example.com/savannasec',
        'address' => '7 Industrial Park, Mbombela',
    ],
];
