-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: implement "Ready to work together?" section of /our-work page
- Loading branch information
Showing
3 changed files
with
12 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<div class="container my-5 py-5"> | ||
<div class="offset-lg-2 col-lg-8 text-center"> | ||
{% assign h3-text = "Ready to work together?" %} {% if include.h3-class %} | ||
<h3 class="{{include.h3-class}}">{{h3-text}}</h3> | ||
{% else %} | ||
<h3>{{h3-text}}</h3> | ||
{% endif %} | ||
<a class="btn btn-primary text-center d-inline-block mt-2" target="_blank" href="mailto:[email protected]">Contact us</a> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -142,11 +142,6 @@ <h3 class="h4 pt-3 mb-1 d-inline-block text-white">{{ member.name }}</h3> | |
|
||
<section class="bg-w-100 bg-white"> | ||
<div class="row"> | ||
<div class="container my-5 py-5"> | ||
<div class="offset-lg-2 col-lg-8 text-center"> | ||
<h3 class="text-dark">Ready to work together?</h3> | ||
<a class="btn btn-primary text-center d-inline-block mt-2" target="_blank" href="mailto:[email protected]">Contact us</a> | ||
</div> | ||
</div> | ||
{% include ready-to-work.html h3-class="text-dark" %} | ||
</div> | ||
</section> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters