Files
easy-php-mycebq/public/portfolio.php
2026-02-14 22:51:11 +00:00

71 lines
3.1 KiB
PHP

<?php
$pageTitle = "Portfolio | Todd Low Media";
include_once 'includes/header.php';
?>
<div class="container py-5">
<div class="row">
<div class="col-12 text-center mb-5">
<h1 class="display-4 fw-bold">Our Recent Projects</h1>
<p class="lead text-muted">A showcase of innovative digital solutions</p>
</div>
</div>
<div class="row g-4">
<div class="col-md-4">
<div class="card portfolio-item h-100 shadow-sm">
<img src="https://via.placeholder.com/400x300" class="card-img-top" alt="Project 1">
<div class="card-body">
<h5 class="card-title">E-Commerce Platform</h5>
<p class="card-text text-muted">
Custom online store with integrated payment processing and inventory management.
</p>
<div class="d-flex justify-content-between align-items-center">
<span class="badge bg-primary">Web Application</span>
<a href="#" class="btn btn-outline-secondary btn-sm">View Project</a>
</div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card portfolio-item h-100 shadow-sm">
<img src="https://via.placeholder.com/400x300" class="card-img-top" alt="Project 2">
<div class="card-body">
<h5 class="card-title">Business Dashboard</h5>
<p class="card-text text-muted">
Real-time analytics and reporting system for small to medium enterprises.
</p>
<div class="d-flex justify-content-between align-items-center">
<span class="badge bg-success">SaaS Solution</span>
<a href="#" class="btn btn-outline-secondary btn-sm">View Project</a>
</div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card portfolio-item h-100 shadow-sm">
<img src="https://via.placeholder.com/400x300" class="card-img-top" alt="Project 3">
<div class="card-body">
<h5 class="card-title">Restaurant Booking App</h5>
<p class="card-text text-muted">
Mobile-friendly reservation and menu management system for restaurants.
</p>
<div class="d-flex justify-content-between align-items-center">
<span class="badge bg-warning">Mobile Web App</span>
<a href="#" class="btn btn-outline-secondary btn-sm">View Project</a>
</div>
</div>
</div>
</div>
</div>
<div class="row mt-5">
<div class="col-12 text-center">
<h3>Interested in Collaborating?</h3>
<p class="lead">Let's create something amazing together.</p>
<a href="contact.php" class="btn btn-primary btn-lg">Get Started</a>
</div>
</div>
</div>
<?php include_once 'includes/footer.php'; ?>