mirror of
https://github.com/myronblair/tomsjavajive
synced 2026-06-30 17:50:32 -05:00
2a1ca85062
- faq.php: accordion FAQ with Orders, Coffee & Products, Coffee Freshness & Storage, and Account sections - shipping.php: rates table (3-5 days after processing), processing time, delivery flow - returns.php: three-tier policy (your/our/shared responsibility) adapted from DripShipper - track-order.php: order lookup by order number + email, progress steps, tracking link - privacy.php: full privacy policy adapted for Toms Java Jive - footer.php: added Privacy Policy link to Support section Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
79 lines
3.0 KiB
PHP
79 lines
3.0 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>
|
|
</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>
|
|
<li><a href="/privacy.php">Privacy Policy</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>
|