templates/website/page/contact-us.html.twig line 1

  1. {% extends '@web/base.html.twig' %}
  2. {% block body %}
  3.     <section class="section-services">
  4.         <div class="custom-container">
  5.             <div class="wrapper-navigation">
  6.                 <h1>
  7.                     {{ 'Contact Us'|trans }}
  8.                 </h1>
  9.                 <ul>
  10.                     <li>
  11.                         <a href="{{ path('page_index') }}">
  12.                             {{ 'Home'|trans }}
  13.                         </a>
  14.                     </li>
  15.                     <li>
  16.                         <span>
  17.                             {{ 'Contact Us'|trans }}
  18.                         </span>
  19.                     </li>
  20.                 </ul>
  21.             </div>
  22.             <div class="wrapper-contact">
  23.                 <div class="wrapper-contact-info">
  24.                     <span class="partner-eyebrow">{{ 'Get in touch'|trans }}</span>
  25.                     <h2 class="wrapper-contact-title">{{ "We'd love to hear from you"|trans }}</h2>
  26.                     <p class="wrapper-contact-lead">
  27.                         {{ 'Questions about a service, an upcoming event, or your printed Gazette? Reach out and our team will get back to you shortly.'|trans }}
  28.                     </p>
  29.                     <div class="wrapper-icons">
  30.                         <div class="wrapper-icon-item">
  31.                             <div class="wrapper-icon">
  32.                                 <svg
  33.                                         xmlns="http://www.w3.org/2000/svg"
  34.                                         width="20" height="20"
  35.                                         viewBox="0 0 24 24"
  36.                                         fill="#fff">
  37.                                     <path d="M2 3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h20c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H2zm0 2h20v.01L12 13 2 5.01V5zm0 3.2L9.6 12 2 16.8V8.2zm20 0v8.6L14.4 12 22 8.2z"/>
  38.                                 </svg>
  39.                             </div>
  40.                             <div class="wrapper-text">
  41.                                 <h6 class="contact-item-name">
  42.                                     {{ 'Email address'|trans }}
  43.                                 </h6>
  44.                                 <a href="mailto:support@infinitemoment.life">
  45.                                     support@infinitemoment.life
  46.                                 </a>
  47.                             </div>
  48.                         </div>
  49.                         <div class="wrapper-icon-item">
  50.                             <div class="wrapper-icon">
  51.                                 <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="#fff">
  52.                                     <path d="M6.6 10.8c1.6 3.2 4.4 6 7.6 7.6l2.6-2.6c.2-.2.6-.2.8 0 1 .4 2 .6 3 .6.4 0 .8.4.8.8v3.8c0 .4-.4.8-.8.8C12 22 2 12 2 3.8c0-.4.4-.8.8-.8H6.6c.4 0 .8.4.8.8 0 1 .2 2 .6 3 .2.2.2.6 0 .8l-2.6 2.4z"/>
  53.                                 </svg>
  54.                             </div>
  55.                             <div class="wrapper-text">
  56.                                 <h6 class="contact-item-name">
  57.                                     {{ 'Phone'|trans }}
  58.                                 </h6>
  59.                                 <a href="tel:+14387382773">
  60.                                     +1 438 738 2773
  61.                                 </a>
  62.                             </div>
  63.                         </div>
  64.                     </div>
  65.                     <div class="wrapper-contact-social">
  66.                         <a href="https://www.instagram.com/infinite__moment__/" target="_blank" rel="noopener">
  67.                             <img src="{{ asset('images/instagram.png') }}" alt="Instagram">
  68.                         </a>
  69.                         <a href="https://www.facebook.com/profile.php?id=61585138588383" target="_blank" rel="noopener">
  70.                             <img src="{{ asset('images/facebook.png') }}" alt="Facebook">
  71.                         </a>
  72.                         <a href="https://wa.me/14387382773" target="_blank" rel="noopener">
  73.                             <img src="{{ asset('images/whatsapp.png') }}" alt="WhatsApp">
  74.                         </a>
  75.                     </div>
  76.                 </div>
  77.                 <div class="wrapper-form">
  78.                     <h3>{{ 'Send us a message'|trans }}</h3>
  79.                     <form action="">
  80.                         <div class="wrapper-input">
  81.                             <label for="name">{{ 'Name'|trans }}</label>
  82.                             <input type="text" placeholder="{{ 'Your name'|trans }}" id="name">
  83.                         </div>
  84.                         <div class="wrapper-input">
  85.                             <label for="email">{{ 'Email'|trans }}</label>
  86.                             <input type="email" placeholder="{{ 'you@example.com'|trans }}" id="email">
  87.                         </div>
  88.                         <div class="wrapper-input">
  89.                             <label for="comment">{{ 'Message'|trans }}</label>
  90.                             <textarea placeholder="{{ 'How can we help?'|trans }}" id="comment" rows="4"></textarea>
  91.                         </div>
  92.                         <div class="wrapper-button">
  93.                             <button type="submit" class="main-button">
  94.                                 {{ 'Submit request'|trans }}
  95.                             </button>
  96.                         </div>
  97.                     </form>
  98.                 </div>
  99.             </div>
  100.         </div>
  101.     </section>
  102. {% endblock %}