Add github link and fix h1 in banner

This commit is contained in:
Nathan Chapman 2022-01-04 18:40:58 -07:00
parent c398d46ec6
commit 31e971a21b
4 changed files with 15 additions and 4 deletions

View File

@ -23,6 +23,7 @@
<nav class="site__nav"> <nav class="site__nav">
<ul> <ul>
<li><a href="/#websites">Websites</a></li> <li><a href="/#websites">Websites</a></li>
<li><a href="https://github.com/nathanjchapman/">Github</a></li>
</ul> </ul>
</nav> </nav>
@ -94,11 +95,12 @@
<footer> <footer>
<section id="contact"> <section id="contact">
<h5>Want to work with me?</h5> <h5>Want to work with me?</h5>
<p><a href="mailto:contact@nathanjchapman.com">Email me</a> and let's start a conversation.</p> <p><a href="mailto:contact@nathanjchapman.com">Contact me</a> and let's start a conversation.</p>
</section> </section>
<section class="site__nav footer__nav"> <section class="site__nav footer__nav">
<ul> <ul>
<li><a href="/#websites">Websites</a></li> <li><a href="/#websites">Websites</a></li>
<li><a href="https://github.com/nathanjchapman/">Github</a></li>
</ul> </ul>
</section> </section>

View File

@ -246,10 +246,18 @@ footer section,
.site__nav ul { .site__nav ul {
display: grid; display: grid;
grid-template-columns: 1fr; grid-template-columns: repeat(12, 1fr);
gap: 1rem; gap: 1rem;
} }
.footer__nav ul li:first-child {
grid-column: 6;
}
.footer__nav ul li:nth-child(2) {
grid-column: 7;
}
@ -265,7 +273,7 @@ footer section,
.site__banner { .site__banner {
display: flex; display: flex;
align-items: center; align-items: center;
text-align: center;
writing-mode: vertical-rl; writing-mode: vertical-rl;
text-orientation: mixed; text-orientation: mixed;
direction: rtl; direction: rtl;

View File

@ -36,7 +36,7 @@
<footer> <footer>
<section id="contact"> <section id="contact">
<h5>Want to work with me?</h5> <h5>Want to work with me?</h5>
<p><a href="mailto:contact@nathanjchapman.com">Email me</a> and let's start a conversation.</p> <p><a href="mailto:contact@nathanjchapman.com">Contact me</a> and let's start a conversation.</p>
</section> </section>
<section class="site__nav footer__nav"> <section class="site__nav footer__nav">
{% include "_partials/_nav.html" %} {% include "_partials/_nav.html" %}

View File

@ -1,4 +1,5 @@
<ul> <ul>
<li><a href="/#websites">Websites</a></li> <li><a href="/#websites">Websites</a></li>
<li><a href="https://github.com/nathanjchapman/">Github</a></li>
{# <li><a href="/#apps">Apps</a></li> #} {# <li><a href="/#apps">Apps</a></li> #}
</ul> </ul>