34089-vm/testimonials.php
Flatlogic Bot 5ba3cee529 1.3
2025-09-16 09:43:13 +00:00

115 lines
5.8 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Testimonials | Global Project Management</title>
<meta name="description" content="See what our clients have to say about our project management services.">
<!-- Bootstrap 5 -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container">
<a class="navbar-brand" href="index.php">PM Global</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item"><a class="nav-link" href="index.php#map-section">Global Reach</a></li>
<li class="nav-item"><a class="nav-link" href="index.php#about">About</a></li>
<li class="nav-item"><a class="nav-link" href="testimonials.php">Testimonials</a></li>
<li class="nav-item"><a class="nav-link" href="case-studies.php">Case Studies</a></li>
<li class="nav-item"><a class="nav-link" href="index.php#contact">Contact</a></li>
</ul>
</div>
</div>
</nav>
<!-- Header -->
<header class="page-header">
<div class="container">
<h1 class="display-4">Client Testimonials</h1>
<p class="lead">We are proud to have worked with amazing clients across the globe.</p>
</div>
</header>
<main class="section">
<div class="container">
<div class="row">
<!-- Testimonial 1 -->
<div class="col-md-6 col-lg-4 mb-4">
<div class="card h-100">
<div class="card-body">
<p class="card-text">"Their ability to manage a globally distributed team was the key to our project's success. We launched our new platform two weeks ahead of schedule, and the entire process was seamless. It felt like they were right here in the office with us."</p>
</div>
<div class="card-footer">
<div class="d-flex align-items-center">
<img src="https://picsum.photos/seed/ceo-portrait-1/50/50" class="rounded-circle me-3" alt="Portrait of Alistair Finch">
<div>
<h6 class="mb-0">Alistair Finch</h6>
<small class="text-secondary">CEO, FinTech Solutions</small>
</div>
</div>
</div>
</div>
</div>
<!-- Testimonial 2 -->
<div class="col-md-6 col-lg-4 mb-4">
<div class="card h-100">
<div class="card-body">
<p class="card-text">"We had a complex integration project with a tight deadline and multiple vendors. Their expertise in risk management and clear communication across all parties was exceptional. They didn't just manage the project; they led it to success."</p>
</div>
<div class="card-footer">
<div class="d-flex align-items-center">
<img src="https://picsum.photos/seed/executive-portrait-2/50/50" class="rounded-circle me-3" alt="Portrait of Maria Garcia">
<div>
<h6 class="mb-0">Maria Garcia</h6>
<small class="text-secondary">VP of Engineering, Enterprise Corp</small>
</div>
</div>
</div>
</div>
</div>
<!-- Testimonial 3 -->
<div class="col-md-6 col-lg-4 mb-4">
<div class="card h-100">
<div class="card-body">
<p class="card-text">"As a startup, we needed more than a manager; we needed a strategic partner. They provided the structure and foresight that allowed our team to focus on innovation. Our MVP launch was a massive success, thanks to their guidance."</p>
</div>
<div class="card-footer">
<div class="d-flex align-items-center">
<img src="https://picsum.photos/seed/founder-portrait-3/50/50" class="rounded-circle me-3" alt="Portrait of Kenji Tanaka">
<div>
<h6 class="mb-0">Kenji Tanaka</h6>
<small class="text-secondary">Founder, Innovatech</small>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</main>
<!-- Footer -->
<footer class="footer">
<div class="container">
<p>&copy; <?php echo date("Y"); ?> PM Global. All Rights Reserved.</p>
<p>Operatating worldwide to bring your ideas to life.</p>
</div>
</footer>
<!-- Bootstrap 5 JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>