Add footer with navigation links, CTAs, and copyright
This commit is contained in:
parent
c59095d9f7
commit
b5eea12579
2 changed files with 168 additions and 0 deletions
119
common.css
119
common.css
|
|
@ -663,3 +663,122 @@ textarea.markup-editor-textarea {
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* ============================================
|
||||||
|
FOOTER
|
||||||
|
============================================ */
|
||||||
|
|
||||||
|
.mps-footer {
|
||||||
|
background-color: #F9F9FA;
|
||||||
|
border-top: 2px solid #e0e0e0;
|
||||||
|
margin-top: 40px;
|
||||||
|
padding: 40px 40px 24px;
|
||||||
|
font-family: helvetica;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mps-footer-grid {
|
||||||
|
max-width: 100%;
|
||||||
|
margin: 0 auto 32px;
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 1fr;
|
||||||
|
gap: 28px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mps-footer-brand {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mps-footer-logo {
|
||||||
|
font-size: 1.4em;
|
||||||
|
font-weight: 550;
|
||||||
|
color: #0b0b0b;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mps-footer-logo:hover {
|
||||||
|
color: #5871ad;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mps-footer-tagline {
|
||||||
|
color: #777;
|
||||||
|
font-size: 14px;
|
||||||
|
max-width: 320px;
|
||||||
|
line-height: 1.5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mps-footer-group {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mps-footer-group-title {
|
||||||
|
font-size: 13px;
|
||||||
|
font-weight: 600;
|
||||||
|
color: #0b0b0b;
|
||||||
|
text-transform: uppercase;
|
||||||
|
letter-spacing: 0.05em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mps-footer-links {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mps-footer-links a {
|
||||||
|
color: #777;
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 400;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mps-footer-links a:hover {
|
||||||
|
color: #a3c765;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mps-footer-ctas {
|
||||||
|
max-width: 100%;
|
||||||
|
margin: 0 auto 24px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 12px;
|
||||||
|
padding: 20px 0;
|
||||||
|
border-top: 1px solid #e0e0e0;
|
||||||
|
border-bottom: 1px solid #e0e0e0;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mps-footer-ctas a.mps-button {
|
||||||
|
min-width: 160px;
|
||||||
|
font-size: 14px;
|
||||||
|
padding-top: 10px;
|
||||||
|
padding-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mps-footer-bottom {
|
||||||
|
text-align: center;
|
||||||
|
color: #999;
|
||||||
|
font-size: 12px;
|
||||||
|
max-width: 100%;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mps-footer-bottom a {
|
||||||
|
color: #999;
|
||||||
|
text-decoration: underline;
|
||||||
|
font-weight: 400;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mps-footer-bottom a:hover {
|
||||||
|
color: #a3c765;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 800px) {
|
||||||
|
.mps-footer-grid {
|
||||||
|
grid-template-columns: 2fr 1fr 1fr 1fr;
|
||||||
|
gap: 32px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
||||||
49
index.html
49
index.html
|
|
@ -436,5 +436,54 @@ Perfect, just leave a message in the comment box below and make sure to verify y
|
||||||
<!-- main -->
|
<!-- main -->
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<footer class="mps-footer">
|
||||||
|
<div class="mps-footer-grid">
|
||||||
|
|
||||||
|
<div class="mps-footer-brand">
|
||||||
|
<a href="/" class="mps-footer-logo">Make Post Sell</a>
|
||||||
|
<p class="mps-footer-tagline">
|
||||||
|
Commission-free digital downloads & physical product sales for creators.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="mps-footer-group">
|
||||||
|
<span class="mps-footer-group-title">Get Started</span>
|
||||||
|
<nav class="mps-footer-links">
|
||||||
|
<a href="https://blog.makepostsell.com/c/0b408430-3a2a-11ef-8208-c3d535a3beac/how-to-create-a-new-shop-on-makepostsell">Create a Shop</a>
|
||||||
|
<a href="https://blog.makepostsell.com/c/83c41f98-3a2f-11ef-8208-c3d535a3beac/how-to-create-a-new-product-on-makepostsell">Create a Product</a>
|
||||||
|
<a href="https://blog.makepostsell.com/c/59c8c980-3a3b-11ef-8208-c3d535a3beac/how-to-create-new-content-on-makepostsell">Create Content</a>
|
||||||
|
<a href="https://blog.makepostsell.com/c/64903474-3a3c-11ef-8208-c3d535a3beac/how-to-create-a-digital-bundle-for-products-content-on-makepostsell">Create a Bundle</a>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="mps-footer-group">
|
||||||
|
<span class="mps-footer-group-title">Resources</span>
|
||||||
|
<nav class="mps-footer-links">
|
||||||
|
<a href="https://blog.makepostsell.com/">Blog</a>
|
||||||
|
<a href="https://git.unturf.com/engineering/make-post-sell/make_post_sell" target="_blank">Source Code</a>
|
||||||
|
<a href="https://pypi.org/project/make-post-sell/" target="_blank">PyPi</a>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="mps-footer-group">
|
||||||
|
<span class="mps-footer-group-title">Account</span>
|
||||||
|
<nav class="mps-footer-links">
|
||||||
|
<a href="https://my.makepostsell.com/u/settings">My Account</a>
|
||||||
|
<a href="https://my.makepostsell.com/s/new">New Shop</a>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="mps-footer-ctas">
|
||||||
|
<a href="https://my.makepostsell.com/s/new" class="shop-new-button mps-button">+ New Shop</a>
|
||||||
|
<a href="https://blog.makepostsell.com/" class="product-edit-button mps-button">🕮 Blog</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="mps-footer-bottom">
|
||||||
|
makepostsell.com © 2026 — Commission-free sales by <a href="https://unturf.com" target="_blank">unturf.com</a>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue