Files
aperonight/app/views/components/_footer.html.erb
Kevin BATAILLE 30f3ecc6ad refactor(events): replace parties concept with events throughout the application
Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>

This commit refactors the entire application to replace the 'parties' concept with 'events'. All controllers, models, views, and related files have been updated to reflect this change. The parties table has been replaced with an events table, and all related functionality has been updated accordingly.
2025-08-28 13:20:51 +02:00

41 lines
1.4 KiB
Plaintext
Executable File

<div class="footer-content">
<div class="footer-section">
<h3>Events</h3>
<ul class="footer-links">
<li><a href="#">Find Events</a></li>
<li><a href="#">Host an Event</a></li>
<li><a href="#">Event Categories</a></li>
<li><a href="#">Premium Events</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Community</h3>
<ul class="footer-links">
<li><a href="#">Join Us</a></li>
<li><a href="#">Member Benefits</a></li>
<li><a href="#">Success Stories</a></li>
<li><a href="#">Ambassador Program</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Support</h3>
<ul class="footer-links">
<li><a href="#">Help Center</a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="#">Safety Guidelines</a></li>
<li><a href="#">Cancellation Policy</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Company</h3>
<ul class="footer-links">
<li><a href="#">About Aperonight</a></li>
<li><a href="#">Careers</a></li>
<li><a href="#">Press & Media</a></li>
<li><a href="#">Partner With Us</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>&copy; 2024 Aperonight. All rights reserved. • <a href="#" style="color: var(--color-accent-400);">Privacy Policy</a> • <a href="#" style="color: var(--color-accent-400);">Terms of Service</a></p>
</div>