everything semi working before sample implementation

This commit is contained in:
twotalesanimation
2025-12-30 00:09:14 +02:00
parent 00b8ff77b2
commit 3c24c0e9ef
39 changed files with 1072 additions and 1615 deletions
+6 -8
View File
@@ -3,9 +3,9 @@
<div class="footer-content">
<div class="footer-column">
<h4>Contact</h4>
<p>Email: info@additionaldesign.com</p>
<p>Phone: (555) 123-4567</p>
<p>Address: 123 Design Street, Creative City, ST 12345</p>
<p>Email: info@additional.co.za</p>
<p>Phone: +27 081 702 7873</p>
<p>Address: 360 Furrow Rd, Pretoria, South Africa</p>
</div>
<div class="footer-column">
@@ -21,25 +21,23 @@
<div class="footer-column">
<h4>Follow Us</h4>
<div class="social-links">
<a href="#" target="_blank">Facebook</a>
<a href="#" target="_blank">Instagram</a>
<a href="#" target="_blank">Pinterest</a>
</div>
</div>
<div class="footer-column">
<h4>Newsletter</h4>
<p>Subscribe to stay updated on new collections and exclusive offers.</p>
<form style="display: flex; gap: 8px; margin-top: var(--spacing-sm);">
<input type="email" placeholder="Your email" style="flex: 1; padding: 8px 12px; border: 1px solid rgba(255,255,255,0.2); background-color: rgba(255,255,255,0.1); color: white; font-size: 0.9rem;">
<button type="submit" class="btn" style="padding: 8px 16px;">Subscribe</button>
<input type="email" placeholder="Your email" style="border-radius: 20px; padding: 8px 12px; border: 1px solid rgba(255,255,255,0.2); background-color: rgba(255,255,255,0.1); color: white; font-size: 0.9rem;">
<button type="submit" class="btn btn--secondary" style="padding: 8px 16px;">Subscribe</button>
</form>
</div>
</div>
<div class="footer-bottom">
<p>&copy; 2025 Additional Design. All rights reserved. Designed with care and creativity.</p>
<p>&copy; <?= date('Y'); ?> Additional Design is a registered trading name of TWO TALES & CO. (PTY) LTD. All rights reserved. Site design and development by TTDEV.</p>
</div>
</div>
</footer>
@@ -1,5 +1,5 @@
<a href="{{ route('product-detail', $product) }}" style="text-decoration: none; color: inherit;">
<div class="card" data-category="{{ $product->category->slug }}">
<div class="product-card" data-category="{{ $product->category->slug }}">
@if($product->images->count() > 0)
<img src="{{ asset('storage/' . $product->images->first()->image_path) }}" alt="{{ $product->name }}" class="card-image" style="background-size: cover; background-position: center;">
@else