diff options
author | William Carroll <wpcarro@gmail.com> | 2020-03-11T18·34+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-03-11T18·34+0000 |
commit | 7163b299f54209c524284d9badd260b2a5c308c1 (patch) | |
tree | ebefcefb13c51d6285ba04311eb5b205078f1f97 | |
parent | bcc2d1e902f8b64d5cb637d1398603c15d09d52d (diff) |
Add social channels to footer of learn.wpcarro.dev
Per Mimi's suggestion, I think adding these channels helps customers better understand that I'm a real person.
-rw-r--r-- | learn/static/index.html | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/learn/static/index.html b/learn/static/index.html index 1c027bcc2a91..e28869ca1854 100644 --- a/learn/static/index.html +++ b/learn/static/index.html @@ -54,8 +54,11 @@ </p> <p class="text-center my-8">Why delay? <em>Start today.</em></p> </div> - <footer class="mb-8"> - <p class="text-center">Why delay? Start today.</p> + <footer class="mb-8 lg:flex"> + <a class="block py-2 lg:w-1/4 text-center hover:underline" href="https://blog.wpcarro.dev">Blog</a> + <a class="block py-2 lg:w-1/4 text-center hover:underline" href="https://linkedin.com/in/williampatrickcarroll">LinkedIn</a> + <a class="block py-2 lg:w-1/4 text-center hover:underline" href="https://twitter.com/wpcarro">Twitter</a> + <a class="block py-2 lg:w-1/4 text-center hover:underline" href="https://github.com/wpcarro">Github</a> </footer> <!-- Global site tag (gtag.js) - Google Analytics --> <script async src="https://www.googletagmanager.com/gtag/js?id=UA-160226702-1"> |