{{-- resources/views/themes/general/sections/testimonials.blade.php --}}
@php
$sectionTitle = $section->title ?? 'What Our Clients Say';
// Expects an array of testimonial objects: [['quote' => '', 'author' => '', 'company' => '']]
$testimonials = $section->content['testimonials_list'] ?? [];
// Fallback for demonstration if $testimonials is empty (remove for production if not needed)
// if (empty($testimonials)) {
// $testimonials = [
// ['quote' => 'Working with Digital Vocano was a game-changer for our business. Their expertise and dedication are unparalleled.', 'author' => 'Jane Doe', 'company' => 'Innovatech Ltd.', 'author_image_url' => 'https://via.placeholder.com/80x80.png?text=JD'],
// ['quote' => 'The team delivered an exceptional product on time and within budget. Highly recommended!', 'author' => 'John Smith', 'company' => 'Solutions Inc.'],
// ];
// }
@endphp