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-items">
  23.                 <div class="wrapper-icons">
  24.                     <div class="wrapper-icon-item">
  25.                         <div class="wrapper-icon">
  26.                             <svg
  27.                                     xmlns="http://www.w3.org/2000/svg"
  28.                                     width="48" height="48"
  29.                                     viewBox="0 0 24 24"
  30.                                     fill="#AF0503">
  31.                                 <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"/>
  32.                             </svg>
  33.                         </div>
  34.                         <div class="wrapper-text">
  35.                             <h6 class="contact-item-name">
  36.                                 Email address
  37.                             </h6>
  38.                             <a href="mailto: support@infinitemoment.life">
  39.                                 support@infinitemoment.life
  40.                             </a>
  41.                         </div>
  42.                     </div>
  43.                     <div class="wrapper-icon-item">
  44.                         <div class="wrapper-icon">
  45.                             <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 24 24" fill="#AF0503">
  46.                                 <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"/>
  47.                             </svg>
  48.                         </div>
  49.                         <div class="wrapper-text">
  50.                             <h6 class="contact-item-name">
  51.                                 Phone
  52.                             </h6>
  53.                             <a href="tel: +14387382773">
  54.                                 +14387382773
  55.                             </a>
  56.                         </div>
  57.                     </div>
  58.                 </div>
  59.                 <div class="wrapper-form">
  60.                     <form action="">
  61.                         <div class="wrapper-input">
  62.                             <input type="text" placeholder="Name" id="name">
  63.                         </div>
  64.                         <div class="wrapper-input">
  65.                             <input type="text" placeholder="Email" id="email">
  66.                         </div>
  67.                         <div class="wrapper-input">
  68.                             <input type="text" placeholder="Comment" id="comment">
  69.                         </div>
  70.                         <div class="wrapper-button">
  71.                             <button type="submit" class="main-button">
  72.                                 Submit request
  73.                             </button>
  74.                         </div>
  75.                     </form>
  76.                 </div>
  77.             </div>
  78.         </div>
  79.     </section>
  80. {% endblock %}