59 lines
2.6 KiB
PHP
59 lines
2.6 KiB
PHP
<?php
|
|
|
|
use WizdomNetworks\WizeWeb\Core\View;
|
|
|
|
/**
|
|
* About Page (v1)
|
|
*
|
|
* This page renders the "About Us" section, refactored from the reference site.
|
|
*/
|
|
|
|
// Ensure data is available before rendering
|
|
$pageId = 'about'; // Unique identifier for this page
|
|
$title = 'About Us - Wizdom Networks';
|
|
$content = '<div class="container">
|
|
<div id="about-row" class="row">
|
|
<div class="col-lg-4">
|
|
<h1 class="about-h1">WHO</h1>
|
|
<p class="about-i">Wizdom is a preeminent business and information technology consultancy.</p>
|
|
<p class="about-small">Established in 2002, with clients throughout North America, we are a creative and innovative, results-oriented group who isn\'t afraid to push boundaries and think outside the box when necessary, all while pragmatically adhering to industry best practices.</p>
|
|
</div>
|
|
<div class="col-lg-4">
|
|
<h1 class="about-h1">WHAT</h1>
|
|
<p class="about-i">We align your IT systems and technology with your business strategy and goals.</p>
|
|
<p class="about-small">Ultimately providing you with an optimal path toward success. If you already have business and IT strategy alignment covered, we also manage IT projects & initiatives, infrastructure, train staff or executives, and <a href="/services.html">more</a>. Basically, if it\'s IT-related, we can get it done for you!</p>
|
|
</div>
|
|
<div class="col-lg-4">
|
|
<h1 class="about-h1">WHY</h1>
|
|
<p class="about-i">Those who have worked with us in the past know that our passion is infectious.</p>
|
|
<p class="about-small">But in a good way. It\'s the kind of passion that sparks creativity and facilitates collaboration—the kind that enables us to overcome technical hurdles and perceived business boundaries.</p>
|
|
</div>
|
|
</div>
|
|
</div>';
|
|
|
|
// Sidebar Configuration
|
|
$sidebarConfig = [
|
|
'enabled' => true,
|
|
'id' => 'about',
|
|
'width' => '25%',
|
|
'position' => 'right',
|
|
'widgets' => [
|
|
'<h3>Company Values</h3><p>Innovation, Integrity, and Excellence.</p>',
|
|
'<h3>Our Vision</h3><p>Empowering businesses with cutting-edge IT solutions.</p>'
|
|
]
|
|
];
|
|
|
|
// Page-Specific Hero Configuration
|
|
$heroConfig = [
|
|
//'title' => 'Who We Are',
|
|
'height' => '65vh',
|
|
'enabled' => 'true',
|
|
//'description' => 'Wizdom Networks is a premier IT consultancy, providing innovative solutions since 2002.',
|
|
'image' => '/assets/images/wizdom-about-definitions.jpg',
|
|
];
|
|
|
|
// Page-Specific Slider Configuration
|
|
|
|
|
|
View::render('layouts/main', compact('title', 'content', 'heroConfig', 'pageId'));
|