update contact page to prioritize social media links and add emails (#24)

* update contact page to prioritize social media links and add emails

* Update src/contact.njk

Co-authored-by: kn0wmad <39687477+kn0wmad@users.noreply.github.com>

* styling

---------

Co-authored-by: kn0wmad <39687477+kn0wmad@users.noreply.github.com>
This commit is contained in:
Lucy
2023-06-15 10:50:32 -06:00
committed by GitHub
parent f6eaaea56e
commit ce274f6c04
2 changed files with 23 additions and 16 deletions

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 41 KiB

After

Width:  |  Height:  |  Size: 41 KiB

View File

@@ -16,20 +16,27 @@ layout: layouts/peripheral.njk
</section>
<section id="contact">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<div id="feedback-form">form will be placed in here</div>
<script id="zammad_form_script" src="https://support.start9.com/assets/form/form.js"></script>
<script>
$(function() {
$('#feedback-form').ZammadForm({
messageTitle: 'Feedback Form',
messageSubmit: 'Submit',
messageThankYou: 'Thank you for your inquiry (#%s)! We\'ll contact you as soon as possible.'
});
});
</script>
<h4 class="text-center">Reach out on social media</h4>
{% include "components/landing/social-media.njk" %}
<h4 class="text-center">message us</h4>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<div id="feedback-form">form will be placed in here</div>
<script id="zammad_form_script" src="https://support.start9.com/assets/form/form.js"></script>
<script>
$(function() {
$('#feedback-form').ZammadForm({
messageTitle: 'Feedback Form',
messageSubmit: 'Submit',
messageThankYou: 'Thank you for your inquiry (#%s)! We\'ll contact you as soon as possible.'
});
});
</script>
<h4 class="text-center">email us</h4>
<p class="text-center">
{% include 'components/emails/security-email.njk' %} |
{% include 'components/emails/affiliate-email.njk' %}
</p>
</section>