46 lines
2.0 KiB
PHP
46 lines
2.0 KiB
PHP
<?php
|
|
namespace WizdomNetworks\WizeWeb\Controllers;
|
|
|
|
use WizdomNetworks\WizeWeb\Core\View;
|
|
use WizdomNetworks\WizeWeb\Utilities\Logger;
|
|
use WizdomNetworks\WizeWeb\Utilities\ErrorHandler;
|
|
|
|
class OnlineBrandManagementController
|
|
{
|
|
public function index()
|
|
{
|
|
Logger::debug("OnlineBrandManagementController::index() - Executing online brand management page rendering.");
|
|
|
|
try {
|
|
$data = [
|
|
'title' => 'Online Brand Management - Wizdom Networks',
|
|
'heroConfig' => [
|
|
'title' => 'Strategic Online Brand Management',
|
|
'description' => 'Enhance your digital presence and reputation.',
|
|
'image' => '/assets/images/online-brand-management-hero.jpg',
|
|
'cta' => ['text' => 'Learn More', 'link' => '/contact'],
|
|
'style' => 'default',
|
|
'position' => 'top'
|
|
],
|
|
'content' => "<h1>Online Brand Management Services</h1>
|
|
<p>We provide strategic online brand management to help businesses strengthen their online presence.</p>",
|
|
'service_details' => [
|
|
'features' => [
|
|
'Social media management',
|
|
'Reputation monitoring',
|
|
'Content strategy'
|
|
],
|
|
'pricing' => 'Custom pricing based on campaign requirements'
|
|
]
|
|
];
|
|
|
|
Logger::debug("OnlineBrandManagementController::index() - Data prepared successfully.");
|
|
View::render('pages/services/online_brand_management', $data);
|
|
Logger::info("OnlineBrandManagementController::index() - Online brand management page rendered successfully.");
|
|
} catch (\Throwable $e) {
|
|
Logger::error("OnlineBrandManagementController::index() - Error rendering online brand management page: " . $e->getMessage());
|
|
ErrorHandler::exception($e);
|
|
}
|
|
}
|
|
}
|