[add] contact icons

aplus#33
tribikram 2 years ago
parent 0b82b63fe6
commit 4104d067db
  1. 2
      public/frontend/css/style.css
  2. 12
      public/frontend/icons/contact-call-icon.svg
  3. 18
      public/frontend/icons/contact-location-icon.svg
  4. 14
      public/frontend/icons/contact-mail-icon.svg
  5. 28
      resources/views/contact.blade.php
  6. 6
      resources/views/insurance.blade.php

@ -1731,7 +1731,7 @@ Responsive Codes
display: none;
}
.contact-form{
margin: 10px;
margin: 25px 0;
}
.contact-captcha{
display: flex;

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 34 KiB

After

Width:  |  Height:  |  Size: 770 B

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 7.9 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 712 B

@ -36,27 +36,21 @@
one of our migration agents will be in touch.
</p>
<div class="contact-desc">
@if($phone !== null)
<a href="tel: {{$phone->value}}" class="contact-phone">
<div class="contact-icons">
<img src="{{url('frontend/icons/contact-call-icon.svg')}}" class="img-fluid" alt="">
</div>
@if(!is_null($phone))
<a href="tel: {{$phone->value}}" class="contact-phone">
<img src="{{url('frontend/icons/contact-call-icon.svg')}}" alt="">
<h5>{{$phone->value}}</h5>
</a>
</a>
@endif
@if($email !== null)
<a href="mailto: {{$email->value}}" class="contact-phone">
<div class="contact-icons">
<img src="{{url('frontend/icons/contact-mail-icon.svg')}}" class="img-fluid" alt="">
</div>
@if(!is_null($email))
<a href="mailto: {{$email->value}}" class="contact-phone">
<img src="{{url('frontend/icons/contact-mail-icon.svg')}}" alt="">
<h5>{{$email->value}}</h5>
</a>
</a>
@endif
@if($address !== null)
<a href="https://goo.gl/maps/mWCCxJALdeLuwxbSA" target="_blank" class="contact-phone">
<div class="contact-icons">
<img src="{{url('frontend/icons/contact-location-icon.svg')}}" class="w-100" alt="">
</div>
@if(!is_null($address))
<a href="https://goo.gl/maps/P4Y2PYGMpGa83L2R8" target="_blank" class="contact-phone">
<img src="{{url('frontend/icons/contact-location-icon.svg')}}" alt="">
<h5>{{$address->value}}</h5>
</a>
@endif

@ -28,10 +28,10 @@
<ul>
<li>Find the right cover for you</li>
<li>We'll do the paperwork</li>
<li>Choose your preferred Hospital</li>
<li>Choose your preferred hospital</li>
<li>Save on Tax</li>
<li>Avoid Long Waiting List</li>
<li>Peace of Mind</li>
<li>Avoid long waiting list</li>
<li>Peace of mind</li>
</ul>
</div>
</div>

Loading…
Cancel
Save