21 lines
523 B
PHP
21 lines
523 B
PHP
<?php
|
|
|
|
namespace WizdomNetworks\WizeWeb\Controllers;
|
|
|
|
use WizdomNetworks\WizeWeb\Core\Controller;
|
|
use WizdomNetworks\WizeWeb\Utils\ErrorHandler;
|
|
|
|
class AboutController extends Controller
|
|
{
|
|
public function index(): void
|
|
{
|
|
|
|
|
|
$this->render('pages/about', [
|
|
'title' => 'About Us - Wizdom Networks',
|
|
'content' => '<h1>About Wizdom Networks</h1>
|
|
<p>We specialize in delivering top-notch IT solutions to help your business thrive.</p>'
|
|
]);
|
|
}
|
|
}
|