@php $appLoginUrl = 'https://app.uzapoint.com/'; $appRegisterUrl = 'https://app.uzapoint.com/register'; $uzapointModules = config('modules.items'); $playStoreUpDukaUrl = 'https://play.google.com/store/apps/details?id=com.uzapoint.upduka&hl=en'; $uzapointApps = [ [ 'name' => 'UP Android', 'tag' => 'POS in your pocket', 'stat_value' => '9,290', 'stat_icon' => 'download', 'stat_label' => 'downloads', 'logo' => 'upduka.png', 'tone' => 'emerald', 'href' => $playStoreUpDukaUrl, ], [ 'name' => 'UP Printer', 'tag' => 'Receipts on demand', 'stat_value' => '649', 'stat_icon' => 'users', 'stat_label' => 'users', 'logo' => 'upprinter.png', 'tone' => 'sky', 'href' => '#', ], [ 'name' => 'SMS Forwarder', 'tag' => 'Payments to books', 'stat_value' => '304', 'stat_icon' => 'users', 'stat_label' => 'users', 'logo' => 'sms-forwarder.png', 'tone' => 'violet', 'href' => '#', ], [ 'name' => 'UP Hotellia', 'tag' => 'Hospitality made simple', 'stat_value' => '129', 'stat_icon' => 'users', 'stat_label' => 'users', 'logo' => 'hotellia.png', 'tone' => 'coral', 'href' => '#', ], ]; $menus = [ [ 'label' => 'Company', 'href' => route('about'), 'variant' => 'compact', 'items' => [ ['label' => 'About us', 'href' => route('about') . '#about-us'], ['label' => 'Our Vision', 'href' => route('about') . '#vision'], ['label' => 'Our Mission', 'href' => route('about') . '#mission'], ['label' => 'Our Values', 'href' => route('about') . '#values'], ['label' => 'Our Team', 'href' => route('about') . '#team'], ], ], [ 'label' => 'Products', 'href' => route('products'), 'variant' => 'mega', 'image' => 'https://images.unsplash.com/photo-1556740758-90de374c12ad?w=520&q=80&auto=format&fit=crop', 'image_alt' => 'Retail business owner using point of sale technology', 'items' => [ ['label' => 'Software', 'href' => route('products.category', 'software')], ['label' => 'Hardware', 'href' => route('products.category', 'hardware')], ['label' => 'Integration', 'href' => route('products.category', 'integration')], ['label' => 'Finance', 'href' => route('products.category', 'finance')], ['label' => 'VAS - Value Added Services', 'href' => route('products.category', 'vas')], ], ], [ 'label' => 'Impact', 'href' => route('impact'), 'variant' => 'mega', 'image' => 'https://images.unsplash.com/photo-1556761175-b413da4baf72?w=520&q=80&auto=format&fit=crop', 'image_alt' => 'Entrepreneurs collaborating in a business workshop', 'items' => [ ['label' => 'SME Empowerment Fund', 'href' => route('impact.program', 'sme-empowerment-fund')], ['label' => 'Uzapoint Academy', 'href' => route('impact.program', 'uzapoint-academy')], ['label' => 'Partnerships', 'href' => route('impact.program', 'partnerships')], ['label' => 'Metrics', 'href' => route('impact.program', 'metrics')], ['label' => 'Testimonials', 'href' => route('impact.program', 'testimonials')], ['label' => 'CSR', 'href' => route('impact.program', 'csr')], ], ], [ 'label' => 'Resources', 'href' => route('resources'), 'variant' => 'mega', 'image' => 'https://images.unsplash.com/photo-1516321318423-f06f85e504b3?w=520&q=80&auto=format&fit=crop', 'image_alt' => 'Business resources and digital learning workspace', 'items' => [ ['label' => 'Press Releases', 'href' => route('resources.section', 'press-releases')], ['label' => 'Stories', 'href' => route('resources.section', 'stories')], ['label' => 'Blogs', 'href' => route('resources.section', 'blogs')], ['label' => 'Events', 'href' => route('resources.section', 'events')], ['label' => 'Gallery', 'href' => route('resources.section', 'gallery')], ['label' => 'Careers', 'href' => route('resources.section', 'careers')], ], ], [ 'label' => 'Contact Us', 'href' => route('contact'), 'variant' => 'link', ], ]; @endphp