Deploy from Lumerel

This commit is contained in:
Lumerel Deploy
2026-02-14 22:51:11 +00:00
commit 2bbace5ca8
9 changed files with 433 additions and 0 deletions

106
public/index.php Normal file
View File

@@ -0,0 +1,106 @@
<?php
$pageTitle = "Todd Low Media | Web Design & Development";
include_once 'includes/header.php';
?>
<div class="container-fluid bg-primary text-white position-relative overflow-hidden">
<div class="row py-5">
<div class="col-lg-6 px-5 d-flex align-items-center">
<div>
<h1 class="display-3 fw-bold mb-4">Transform Your Digital Presence</h1>
<p class="lead mb-4">
We craft stunning, high-performance websites and web applications
that help your business stand out in the digital landscape.
</p>
<div class="d-flex gap-3">
<a href="/services.php" class="btn btn-light btn-lg">Our Services</a>
<a href="/contact.php" class="btn btn-outline-light btn-lg">Start a Project</a>
</div>
</div>
</div>
<div class="col-lg-6 d-none d-lg-flex justify-content-center align-items-center">
<i class="fas fa-code fa-10x text-white-50 opacity-50"></i>
</div>
</div>
</div>
<div class="container py-5">
<div class="row text-center">
<div class="col-12">
<h2 class="mb-5">Why Choose Todd Low Media?</h2>
</div>
<div class="col-md-4 mb-4">
<div class="card h-100 border-0">
<div class="card-body">
<i class="fas fa-rocket fa-3x text-primary mb-3"></i>
<h4 class="card-title">Performance-Driven</h4>
<p class="card-text text-muted">
Websites optimized for speed, user experience, and conversion.
</p>
</div>
</div>
</div>
<div class="col-md-4 mb-4">
<div class="card h-100 border-0">
<div class="card-body">
<i class="fas fa-mobile-alt fa-3x text-success mb-3"></i>
<h4 class="card-title">Responsive Design</h4>
<p class="card-text text-muted">
Seamless experience across all devices and screen sizes.
</p>
</div>
</div>
</div>
<div class="col-md-4 mb-4">
<div class="card h-100 border-0">
<div class="card-body">
<i class="fas fa-layer-group fa-3x text-warning mb-3"></i>
<h4 class="card-title">Custom Solutions</h4>
<p class="card-text text-muted">
Tailored web solutions that meet your unique business needs.
</p>
</div>
</div>
</div>
</div>
</div>
<section class="bg-light py-5">
<div class="container">
<div class="row">
<div class="col-12 text-center mb-5">
<h2>Our Recent Projects</h2>
<p class="text-muted">A glimpse of our creative solutions</p>
</div>
<div class="col-md-4 mb-4">
<div class="card h-100">
<div class="card-body text-center">
<h4>E-Commerce Platform</h4>
<p class="text-muted">Custom online store development</p>
</div>
</div>
</div>
<div class="col-md-4 mb-4">
<div class="card h-100">
<div class="card-body text-center">
<h4>Business Dashboard</h4>
<p class="text-muted">Analytics and reporting system</p>
</div>
</div>
</div>
<div class="col-md-4 mb-4">
<div class="card h-100">
<div class="card-body text-center">
<h4>Restaurant App</h4>
<p class="text-muted">Mobile reservation system</p>
</div>
</div>
</div>
<div class="col-12 text-center">
<a href="/portfolio.php" class="btn btn-primary">View Full Portfolio</a>
</div>
</div>
</div>
</section>
<?php include_once 'includes/footer.php'; ?>