feat: Enhance footer branding with company logo and name display

This commit is contained in:
Matt Batchelder
2026-02-22 11:54:55 -05:00
parent 0d409a5d66
commit 71d63b67f2
2 changed files with 25 additions and 5 deletions

View File

@@ -723,11 +723,14 @@ function oribi_render_site_footer() {
<div class="container">
<div class="footer-inner">
<div class="footer-brand">
<?php if ( has_custom_logo() ) : ?>
<?php the_custom_logo(); ?>
<?php else : ?>
<div class="logo-text"><strong>Oribi</strong> Tech</div>
<?php endif; ?>
<div class="logo-with-company">
<?php if ( has_custom_logo() ) : ?>
<?php the_custom_logo(); ?>
<?php else : ?>
<div class="logo-text"><strong>Oribi</strong> Tech</div>
<?php endif; ?>
<div class="company-name">Oribi Technology Services</div>
</div>
<p class="footer-tagline">Digital signage solutions that communicate, engage, and grow your business.</p>
<p class="footer-location">An Oribi Technology Services Company</p>
</div>