@extends('layouts.app')
@section('title', 'Where Your Donations Go? - Mikey Network')
@section('content')
Your Support Saves Lives
For every dollar donated to The Mikey Network, we can continue our goal to provide education resources to help save lives.
How your donation makes an impact.
@php
$sections = [
[
'img_src' => asset('images/donation_1.jpg'),
'img_alt' => 'Placing Mikeys',
'heading' => 'Placing Mikeys in High-Risk Areas',
'text' => 'Your donations help fund the placement of MIKEY defibrillators in schools, community centers, and public spaces where they can make the most impact in cardiac emergencies.'
],
[
'img_src' => asset('images/donation_2.png'),
'img_alt' => 'Education & Training',
'heading' => 'Education & Training',
'text' => 'A MIKEY is most effective when people know how to use it. Your support helps us provide training programs, public awareness campaigns, and online resources to educate individuals on CPR and AED use.'
],
[
'img_src' => asset('images/donation_3.png'),
'img_alt' => 'Maintaining Mikeys',
'heading' => 'Maintaining and Replacing Mikeys',
'text' => 'Defibrillators require ongoing maintenance to ensure they\'re always ready to save a life. Donations go toward battery replacements, electrode pad updates, and routine device checks to keep every MIKEY in working condition.'
],
[
'img_src' => asset('images/donation_4.png'),
'img_alt' => 'Expanding Programs',
'heading' => 'Expanding Our Programs',
'text' => 'From Mikey Young at Heart (placing AEDs in schools) to Mikey on Board (equipping fleet vehicles with AEDs), your donations help us grow our life-saving programs and bring more MIKEYs to more places.'
],
[
'img_src' => asset('images/donation_5.png'),
'img_alt' => 'Save More Lives',
'heading' => 'Help Us Save More Lives',
'text' => 'Every donation—big or small—makes a difference. Your generosity could mean the difference between life and death for someone experiencing sudden cardiac arrest.'
]
];
@endphp
@foreach ($sections as $section)
{{ $section['heading'] }}
{{ $section['text'] }}
@endforeach
Donate today and be part of the mission to save lives.
@endsection