Add twitter button

This commit is contained in:
Sam Carlton 2020-11-16 13:46:19 -06:00
parent 4a3c96b95d
commit 3f5f0eb764
2 changed files with 101 additions and 1 deletions

View file

@ -4,6 +4,33 @@
<div class="app-main min-h-screen flex items-center">
<nuxt />
</div>
<footer class="">
<div class="max-w-screen-xl mx-auto py-12 px-4 overflow-hidden space-y-8 sm:px-6 lg:px-8">
<!-- <nav class="-mx-5 -my-2 flex flex-wrap justify-center">
<div class="px-5 py-2">
<a href="#" class="text-base leading-6 text-gray-500 hover:text-gray-900">
About
</a>
</div>
<div class="px-5 py-2">
<a href="#" class="text-base leading-6 text-gray-500 hover:text-gray-900">
Blog
</a>
</div>
</nav> -->
<div class="mt-8 flex justify-center space-x-6">
<div class="flex flex-col items-center space-y-4">
<div>Get Twitter Updates</div>
<TwitterFollow />
</div>
</div>
<p class="mt-8 text-center text-base leading-6 text-gray-400">
&copy; 2020 Does it ARM All rights reserved.
</p>
</div>
</footer>
</div>
</template>
@ -11,10 +38,12 @@
import 'typeface-inter/inter.css'
import Navbar from '~/components/navbar.vue'
import TwitterFollow from '~/components/twitter-follow.vue'
export default {
components: {
Navbar
Navbar,
TwitterFollow
}
}