Skip to content

Commit

Permalink
feat(footer): Add footer to landing template
Browse files Browse the repository at this point in the history
  • Loading branch information
bonbisu committed Aug 9, 2022
1 parent dafb68e commit d1d81bd
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/components/Organisms/Footers/LandingFooter.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<template>
<div class="brown-section grid grid-cols-4 ">
<div class="px-7 py-20">
<p>AgroforestDAO</p>
</div>
<div class="col-start-4 flex items-center justify-center space-x-7">
<p>Join us: </p>
<SocialIcon icon="i-fa-brands-discord" route-to="https://discord.gg/2ZchhEPA7K" />
<SocialIcon icon="i-fa-brands-telegram" route-to="https://t.co/w4MUungCn7" />
<SocialIcon icon="i-fa-brands-twitter" route-to="https://twitter.com/agroforestDAO" />
</div>
</div>
</template>
1 change: 1 addition & 0 deletions src/layouts/landing.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
<main class="text-primary-light dark:text-primary-dark">
<LandingHeader />
<RouterView />
<LandingFooter />
</main>
</template>

0 comments on commit d1d81bd

Please sign in to comment.