Deprecated: Symfony\Component\Translation\t(): Implicitly marking parameter $domain as nullable is deprecated, the explicit nullable type must be used instead in /var/www/html/t/taurushr/vendor/symfony/translation/Resources/functions.php on line 18

Deprecated: Symfony\Component\Dotenv\Dotenv::loadEnv(): Implicitly marking parameter $envKey as nullable is deprecated, the explicit nullable type must be used instead in /var/www/html/t/taurushr/vendor/symfony/dotenv/Dotenv.php on line 110

Deprecated: Symfony\Component\Runtime\GenericRuntime::getResolver(): Implicitly marking parameter $reflector as nullable is deprecated, the explicit nullable type must be used instead in /var/www/html/t/taurushr/vendor/symfony/runtime/GenericRuntime.php on line 89

Deprecated: Symfony\Component\Runtime\RuntimeInterface::getResolver(): Implicitly marking parameter $reflector as nullable is deprecated, the explicit nullable type must be used instead in /var/www/html/t/taurushr/vendor/symfony/runtime/RuntimeInterface.php on line 26

Deprecated: Symfony\Component\Console\Input\ArgvInput::__construct(): Implicitly marking parameter $argv as nullable is deprecated, the explicit nullable type must be used instead in /var/www/html/t/taurushr/vendor/symfony/console/Input/ArgvInput.php on line 46

Deprecated: Symfony\Component\Console\Input\ArgvInput::__construct(): Implicitly marking parameter $definition as nullable is deprecated, the explicit nullable type must be used instead in /var/www/html/t/taurushr/vendor/symfony/console/Input/ArgvInput.php on line 46

Deprecated: Symfony\Component\Console\Input\Input::__construct(): Implicitly marking parameter $definition as nullable is deprecated, the explicit nullable type must be used instead in /var/www/html/t/taurushr/vendor/symfony/console/Input/Input.php on line 36

Deprecated: Constant E_STRICT is deprecated in /var/www/html/t/taurushr/vendor/symfony/error-handler/ErrorHandler.php on line 58

Deprecated: Constant E_STRICT is deprecated in /var/www/html/t/taurushr/vendor/symfony/error-handler/ErrorHandler.php on line 76
Symfony Profiler

templates/themes/theme/meettheteam/embedTeamMember.html.twig line 1

Open in your IDE?
  1. <twig:PageHero :title="teamMember.title" :subtitle="teamMember.position">
  2.   <twig:block name="teamMemberInfo">
  3.     <div class="flex items-center gap-8 mt-1">
  4.       <h2 class="text-shade-50">{{ teamMember.position }}</h2>
  5.       <div class="flex items-center gap-4">
  6.         {% if teamMember.email %}
  7.           <a href="mailto:{{ teamMember.email }}">
  8.             <i class="fa-solid fa-paper-plane-top"></i>
  9.           </a>
  10.         {% endif %}
  11.         {% if teamMember.linkedinUrl %}
  12.           <a href="{{ teamMember.linkedinUrl }}" target="_blank">
  13.             <i class="fa-brands fa-linkedin"></i>
  14.           </a>
  15.         {% endif %}
  16.       </div>
  17.     </div>
  18.   </twig:block>
  19.   <!-- TODO: make link dynamic -->
  20.   <a class="button" href="/contact">How can we help you today?</a>
  21. </twig:PageHero>
  22. <twig:PageMainContent image="{{ teamMember.image ? '/userfiles/images/teammember/' ~ teamMember.image : null }}">
  23.   {{ teamMember.content | raw }}
  24.   <twig:block name="buttons">
  25.     {% if teamMember.ctaText and teamMember.ctaLink %}
  26.       <a class="button" href="{{ teamMember.ctaLink }}">
  27.         {{- teamMember.ctaText -}}
  28.       </a>
  29.     {% endif %}
  30.   </twig:block>
  31. </twig:PageMainContent>
  32. {% if teamMember.testimonial %}
  33.   <twig:SingleTestimonial :testimonial="teamMember.testimonial" />
  34. {% endif %}