294c197d62
Refactored Home.razor to use modular Blazor components for each site section (navigation, hero, values, impact, process, expertise, testimonials, team, footer). Added corresponding CSS files for each component. Implemented responsive navigation with hamburger menu and interactive logic. Updated process section with animated connectors and Bootstrap Icons. Switched to inline SVGs for values and impact icons. Cleaned up app.css and updated background color. Added new image for impact section. Improved maintainability and responsive design.
34 lines
1.1 KiB
Plaintext
34 lines
1.1 KiB
Plaintext
<footer class="frc-footer" id="contact">
|
|
<div class="frc-footer-grid">
|
|
<div>
|
|
<div class="frc-logo">
|
|
<img src="images/logo.svg" alt="FRC" class="frc-logo-img" />
|
|
</div>
|
|
<p class="frc-foot-title">For Real Consulting</p>
|
|
<p class="frc-foot-subtitle">CLARITY TODAY, COMFORT TOMORROW</p>
|
|
</div>
|
|
<div class="frc-footer-links">
|
|
<a href="#top">Home</a>
|
|
<a href="#aanpak">Aanpak</a>
|
|
<a href="#expertise">Expertise</a>
|
|
<a href="#over-ons">Over Ons</a>
|
|
</div>
|
|
<div class="frc-footer-contact">
|
|
<p>✉ info@forrealconsulting.be</p>
|
|
<p>📞 0476 17 12 49</p>
|
|
<p>📍 Gent, België</p>
|
|
</div>
|
|
<div class="frc-footer-cta-wrap">
|
|
<a href="#contact" class="frc-outline-btn">Contact</a>
|
|
</div>
|
|
</div>
|
|
<div class="frc-footer-bottom">
|
|
<p>© 2026 For Real Consulting. Alle rechten voorbehouden.</p>
|
|
<div>
|
|
<a href="#">Privacybeleid</a>
|
|
<span>|</span>
|
|
<a href="#">Cookies</a>
|
|
</div>
|
|
</div>
|
|
</footer>
|