21 lines
512 B
PHP
21 lines
512 B
PHP
<?php
|
|
|
|
/**
|
|
* Home Page
|
|
*
|
|
* This file renders the homepage and dynamically loads the hero section and slider if configured.
|
|
*/
|
|
|
|
$title = 'Home - Wizdom Networks';
|
|
$showSlider = ['type' => 'hero']; // Enable hero slider
|
|
|
|
$content = <<<HTML
|
|
<h1>Welcome to Wizdom Networks</h1>
|
|
<p>Your trusted partner for IT Consulting and Services.</p>
|
|
<p><a href="/services" class="btn btn-primary">Explore Our Services</a></p>
|
|
HTML;
|
|
|
|
$this->render('layouts/main', compact('title', 'content', 'showHero', 'showSlider'));
|
|
|
|
?>
|