Skip to content

Commit

Permalink
feat: implement "Ready to work together?" section of /our-work page
Browse files Browse the repository at this point in the history
  • Loading branch information
lalver1 committed Jul 1, 2024
1 parent d716f8e commit 2ce57b3
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
10 changes: 10 additions & 0 deletions src/_includes/ready-to-work.html
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>
7 changes: 1 addition & 6 deletions src/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>
4 changes: 1 addition & 3 deletions src/our-work.html
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,4 @@ <h3 class="fs-6 fw-normal sans-serif text-dark d-block mt-3">
<hr class="border border-100 border-dark border-half opacity-100 mb-1" />
</section>

<section class="row">
<!-- Ready to work together? -->
</section>
<section class="row">{% include ready-to-work.html %}</section>

0 comments on commit 2ce57b3

Please sign in to comment.