mirror of
https://github.com/myronblair/tomsjavajive-app
synced 2026-06-30 17:50:56 -05:00
80 lines
3.1 KiB
PHP
80 lines
3.1 KiB
PHP
<?php
|
|
/**
|
|
* Tom's Java Jive - Footer Include
|
|
*/
|
|
?>
|
|
</main>
|
|
|
|
<footer class="footer">
|
|
<div class="container">
|
|
<div class="footer-grid">
|
|
<div class="footer-brand">
|
|
<a href="/" class="logo">
|
|
<img src="/assets/images/logo.png" alt="<?= SITE_NAME ?>" style="height: 50px;">
|
|
</a>
|
|
<p>Premium artisan coffee beans freshly roasted and delivered to your door. Experience the perfect cup, every time.</p>
|
|
</div>
|
|
|
|
<div>
|
|
<h4>Shop</h4>
|
|
<ul class="footer-links">
|
|
<li><a href="/shop.php">All Products</a></li>
|
|
<li><a href="/shop.php?category=single-origin">Single Origin</a></li>
|
|
<li><a href="/shop.php?category=blends">Blends</a></li>
|
|
<li><a href="/shop.php?category=equipment">Equipment</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div>
|
|
<h4>Company</h4>
|
|
<ul class="footer-links">
|
|
<li><a href="/#about">About Us</a></li>
|
|
<li><a href="/contact.php">Contact</a></li>
|
|
<li><a href="/wholesale.php">Wholesale</a></li>
|
|
<li><a href="/careers.php">Careers</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div>
|
|
<h4>Support</h4>
|
|
<ul class="footer-links">
|
|
<li><a href="/faq.php">FAQ</a></li>
|
|
<li><a href="/shipping.php">Shipping Info</a></li>
|
|
<li><a href="/returns.php">Returns</a></li>
|
|
<li><a href="/track-order.php">Track Order</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="footer-bottom">
|
|
<p>© <?= date('Y') ?> Tom's Java Jive. All rights reserved.</p>
|
|
<div class="footer-social">
|
|
<a href="#" title="Facebook"><i class="fab fa-facebook-f"></i></a>
|
|
<a href="#" title="Instagram"><i class="fab fa-instagram"></i></a>
|
|
<a href="#" title="Twitter"><i class="fab fa-twitter"></i></a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<script src="/assets/js/main.js"></script>
|
|
|
|
<!-- PWA Service Worker Registration -->
|
|
<script>
|
|
if ('serviceWorker' in navigator) {
|
|
window.addEventListener('load', () => {
|
|
navigator.serviceWorker.register('/sw.js')
|
|
.then(registration => {
|
|
console.log('SW registered:', registration.scope);
|
|
})
|
|
.catch(error => {
|
|
console.log('SW registration failed:', error);
|
|
});
|
|
});
|
|
}
|
|
</script>
|
|
|
|
<?php if (isset($extraScripts)) echo $extraScripts; ?>
|
|
</body>
|
|
</html>
|