templates/partials/_footer.html.twig line 1

Open in your IDE?
  1. <footer class="bg-gray-950 text-white py-12">
  2.     <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
  3.         <div class="grid md:grid-cols-4 gap-8 mb-8">
  4.             <div>
  5.                 <div class="flex items-center space-x-3 mb-4">
  6.                     <div class="w-10 h-10 rounded-full bg-primary-blue flex items-center justify-center border-2 border-gold">
  7.                         <img src="https://aficargo.com/a.png" alt="AFI CARGO Logo" class="w-8 h-8">
  8.                     </div>
  9.                     <h3 class="text-2xl font-extrabold">
  10.                         <span class="text-white">AFI</span>
  11.                         <span class="text-gold">CARGO</span>
  12.                     </h3>
  13.                 </div>
  14.                 <p id="footer-description" class="text-gray-400">
  15.                     {{ 'footer.description'|trans }}
  16.                 </p>
  17.             </div>
  18.             <div>
  19.                 <h4 id="quick-links-heading" class="font-bold text-lg mb-4 text-gold">{{ 'footer.sections.links'|trans }}</h4>
  20.                 <ul class="space-y-2">
  21.                     <li><a href="#home" class="text-gray-400 hover:text-white transition duration-300" id="footer-home">{{ 'nav.home'|trans }}</a></li>
  22.                     <li><a href="#company-profile" class="text-gray-400 hover:text-white transition duration-300" id="footer-profile">{{ 'nav.profile'|trans }}</a></li>
  23.                     <li><a href="#services" class="text-gray-400 hover:text-white transition duration-300" id="footer-services">{{ 'nav.services'|trans }}</a></li>
  24.                     <li><a href="#afi-business" class="text-gray-400 hover:text-white transition duration-300" id="footer-business">{{ 'nav.business'|trans }}</a></li>
  25.                     <li><a href="#gallery" class="text-gray-400 hover:text-white transition duration-300" id="footer-gallery">{{ 'nav.gallery'|trans }}</a></li>
  26.                     <li><a href="#testimonials" class="text-gray-400 hover:text-white transition duration-300" id="footer-testimonials">{{ 'nav.testimonials'|trans }}</a></li>
  27.                     <li><a href="#contact" class="text-gray-400 hover:text-white transition duration-300" id="footer-contact">{{ 'nav.contact'|trans }}</a></li>
  28.                 </ul>
  29.             </div>
  30.             <div>
  31.                 <h4 id="services-heading-footer" class="font-bold text-lg mb-4 text-gold">{{ 'nav.services'|trans }}</h4>
  32.                 <ul class="space-y-2">
  33.                     <li><a href="#services" class="text-gray-400 hover:text-white transition duration-300">{{ 'footer.services_list.air'|trans }}</a></li>
  34.                     <li><a href="#services" class="text-gray-400 hover:text-white transition duration-300">{{ 'footer.services_list.sea'|trans }}</a></li>
  35.                     <li><a href="#services" class="text-gray-400 hover:text-white transition duration-300">{{ 'footer.services_list.customs'|trans }}</a></li>
  36.                     <li><a href="#services" class="text-gray-400 hover:text-white transition duration-300">{{ 'footer.services_list.warehousing'|trans }}</a></li>
  37.                 </ul>
  38.             </div>
  39.             <div>
  40.                 <h4 id="newsletter-heading" class="font-bold text-lg mb-4 text-gold">{{ 'footer.newsletter.heading'|trans }}</h4>
  41.                 <p id="newsletter-text" class="text-gray-400 mb-4">{{ 'footer.newsletter.text'|trans }}</p>
  42.                 <form name="newsletter"
  43.                       method="POST"
  44.                       data-netlify="true"
  45.                       netlify-honeypot="bot-field"
  46.                       class="flex">
  47.                     <input type="hidden" name="form-name" value="newsletter">
  48.                     <input type="email" name="email" placeholder="{{ 'footer.newsletter.placeholder'|trans }}"
  49.                            class="flex-grow px-4 py-2 bg-gray-800 border border-gray-700 rounded-l-lg focus:outline-none focus:ring-2 focus:ring-gold">
  50.                     <button type="submit" id="newsletter-btn" class="bg-gold text-primary-blue font-bold px-4 rounded-r-lg hover:bg-yellow-600 transition duration-300">
  51.                         <i class="fas fa-paper-plane"></i>
  52.                     </button>
  53.                 </form>
  54.             </div>
  55.         </div>
  56.         <div class="pt-8 border-t border-gray-800 text-center">
  57.             <p id="footer-text" class="text-gray-400 mb-2">
  58.                 &copy; {{ "now"|date("Y") }} AFI CARGO LTD. {{ 'footer.rights'|trans }}
  59.             </p>
  60.             <p class="text-gray-400">
  61.                 <span id="footer-contact-label">{{ 'footer.contact_label'|trans }}</span>
  62.                 <span class="text-gold">+86 13434346581</span> |
  63.                 <span class="text-gold">contactaficargoltd@gmail.com</span>
  64.             </p>
  65.         </div>
  66.     </div>
  67. </footer>