18 lines
549 B
PHP
18 lines
549 B
PHP
<?php
|
|
|
|
$title = 'Emergency Support - Wizdom Networks';
|
|
$heroConfig = [
|
|
'title' => 'Innovative IT Solutions',
|
|
'description' => 'Empowering businesses with cutting-edge technology solutions.',
|
|
'image' => '/assets/images/rescue-training.jpg',
|
|
'cta' => ['text' => 'Learn More', 'link' => '/services'],
|
|
'style' => 'default',
|
|
'position' => 'top'
|
|
];
|
|
|
|
|
|
$content = <<<HTML
|
|
<h1>Emergency Support</h1><p>We offer 24/7 emergency IT support to ensure your business operations run smoothly.</p>
|
|
HTML;
|
|
|
|
$this->render('layouts/main', $data); |