136 lines
3.5 KiB
Plaintext
136 lines
3.5 KiB
Plaintext
<footer class="np-footer">
|
|
<div class="footer-container np-max-width">
|
|
<div class="footer-left">
|
|
<img src="https://www.gainsight.com/wp-content/themes/unicon-child/framework/images/G_Logo_ReversedWhite.png" />
|
|
<h2>Win in business while being human-first.</h2>
|
|
<a
|
|
class="demo-btn np-button"
|
|
href="https://info.gainsight.com/demo"
|
|
target="_blank">
|
|
Schedule a Demo
|
|
</a>
|
|
|
|
</div>
|
|
<div class="footer-right">
|
|
<nav class="np-footer-social-links">
|
|
{% if website_footer.show_social_media_links? %}
|
|
<ul class="np-footer-social-links-list">
|
|
{% for social_media_link in website_footer.social_media_links %}
|
|
<li class="np-footer-social-links-item">
|
|
<a
|
|
class="np-footer-social-links-link"
|
|
href="{{ social_media_link.link }}"
|
|
target="_blank"
|
|
title="{{ social_media_link.name }}">
|
|
{% if social_media_link.name == "twitter" %}
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
height="14"
|
|
width="14"
|
|
viewBox="0 0 512 512">
|
|
<path d="M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z" /></svg>
|
|
{% elsif social_media_link.name == "linkedin" %}
|
|
<i class="fab fa-linkedin-in"></i>
|
|
{% else %}
|
|
<i class="np-footer-social-links-icon fab fa-{{ social_media_link.name }}"></i>
|
|
{% endif %}
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
</nav>
|
|
<p>© 2024 Gainsight, The Customer Success Company. All rights reserved. <br>
|
|
350 Bay Street, Suite 100, San Francisco, CA 94133 <br>
|
|
+1 (888) 623-8562</p>
|
|
<p>
|
|
<a
|
|
class="terms-link"
|
|
href="https://www.gainsight.com/policy"
|
|
target="_blank">Terms and Privacy</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<style>
|
|
.np-footer {
|
|
background-color: #2E3338;
|
|
padding: 50px 16px;
|
|
position: relative;
|
|
width: 100%;
|
|
}
|
|
|
|
.np-footer .footer-container {
|
|
width: 100%;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.footer-left img {
|
|
max-width: 100%;
|
|
width: 50px;
|
|
}
|
|
|
|
.footer-left h2 {
|
|
font-size: 24px;
|
|
color: #fff;
|
|
line-height: 1.2;
|
|
margin-top: 10px;
|
|
padding-bottom: 20px;
|
|
font-weight: 400;
|
|
max-width: 300px;
|
|
}
|
|
|
|
.footer-left .np-footer-social-links-list {
|
|
padding: 30px 0 0;
|
|
}
|
|
|
|
.np-footer-social-links-link {
|
|
width: 32px;
|
|
height: 38px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
color: #fff;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.np-footer-social-links-link svg {
|
|
fill: #fff;
|
|
}
|
|
|
|
.np-footer-social-links-link:hover {
|
|
color: #fff;
|
|
}
|
|
|
|
.footer-right {
|
|
margin-top: 64px;
|
|
max-width: 600px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.footer-right .terms-link {
|
|
color: #fff;
|
|
text-decoration: none;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.np-footer .footer-container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: flex-end;
|
|
}
|
|
|
|
.footer-right {
|
|
text-align: right;
|
|
}
|
|
|
|
.np-footer-social-links-list {
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.np-footer-social-links-item {
|
|
padding: 0 0 0 20px;
|
|
}
|
|
}
|
|
</style> |