WizdomWeb/resources/views/pages/testimonials.php

17 lines
454 B
PHP

<?php
use WizdomNetworks\WizeWeb\Core\View;
/**
* Testimonials Page View
*
* This view dynamically renders the Testimonials page using data provided by the TestimonialsController.
*/
// Ensure data is available before rendering
$title = $data['title'] ?? 'Client Testimonials - Wizdom Networks';
$content = $data['content'] ?? '';
$heroConfig = $data['heroConfig'] ?? [];
View::render('layouts/main', compact('title', 'content', 'heroConfig'));