99 lines
4.8 KiB
PHP
99 lines
4.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>Our Team | Flatlogic</title>
|
|
<meta name="description" content="Meet the experienced team of project managers, developers, and designers at Flatlogic.">
|
|
|
|
<!-- 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="services.php">Services</a></li>
|
|
<li class="nav-item"><a class="nav-link" href="team.php">Our Team</a></li>
|
|
<li class="nav-item"><a class="nav-link" href="blog.php">Blog</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">Our Team</h1>
|
|
<p class="lead">The experts behind our success.</p>
|
|
</div>
|
|
</header>
|
|
|
|
<!-- Main Content -->
|
|
<main class="container mt-5">
|
|
<section id="team" class="section">
|
|
<div class="row text-center">
|
|
<div class="col-md-4 mb-4">
|
|
<img src="https://picsum.photos/seed/team-member-1/200/200" class="rounded-circle mb-3" alt="Team Member 1">
|
|
<h5>John Doe</h5>
|
|
<p class="text-muted">CEO</p>
|
|
<p>John has over 20 years of experience in the software industry, with a passion for building high-performing teams and delivering innovative solutions.</p>
|
|
</div>
|
|
<div class="col-md-4 mb-4">
|
|
<img src="https://picsum.photos/seed/team-member-2/200/200" class="rounded-circle mb-3" alt="Team Member 2">
|
|
<h5>Jane Smith</h5>
|
|
<p class="text-muted">Project Manager</p>
|
|
<p>Jane is a certified Project Management Professional (PMP) with a knack for keeping projects on track and stakeholders happy. She excels in agile and waterfall methodologies.</p>
|
|
</div>
|
|
<div class="col-md-4 mb-4">
|
|
<img src="https://picsum.photos/seed/team-member-3/200/200" class="rounded-circle mb-3" alt="Team Member 3">
|
|
<h5>Peter Jones</h5>
|
|
<p class="text-muted">Lead Developer</p>
|
|
<p>Peter is a full-stack developer with a love for clean code and elegant solutions. He is an expert in a wide range of technologies, from React to Node.js.</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
|
|
<!-- Footer -->
|
|
<footer class="footer mt-5">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<p>© <?php echo date("Y"); ?> PM Global. All Rights Reserved.</p>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<h5>Stay Updated</h5>
|
|
<p>Subscribe to our newsletter for the latest insights.</p>
|
|
<form action="newsletter_signup.php" method="post">
|
|
<div class="input-group mb-3">
|
|
<input type="email" class="form-control" placeholder="Your Email" name="email" required>
|
|
<button class="btn btn-primary" type="submit">Subscribe</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</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>
|