Skip to content

Commit

Permalink
merge
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomi-Tom committed May 18, 2024
2 parents b59bdd6 + 06a8d78 commit b96d825
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 8 deletions.
22 changes: 16 additions & 6 deletions src/components/Navbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,15 @@
<img alt="Site Logo" height="21" src="/logo.svg" width="120" />
</RouterLink>
<nav class="flex space-x-8 body-small text-neutral-800">
<RouterLink to="/company"> Company </RouterLink>
<a href="#"> Earn </a>
<a href="#"> APIs </a>
<RouterLink to="/company">
Company
</RouterLink>
<a href="#">
Earn
</a>
<a href="#">
APIs
</a>
<div @mouseenter="showApps = true" @mouseleave="showApps = false">
<div class="flex">
<span class="mr-1.5 cursor-pointer">Apps</span>
Expand All @@ -21,8 +27,12 @@
role="menu"
>
<div class="py-1">
<a class="dropdown-item" href="https://chat.libertai.io" target="_blank"> Chat dApp </a>
<a class="dropdown-item" href="https://t.me/liberchat_bot" target="_blank"> Telegram bot </a>
<a class="dropdown-item" href="https://chat.libertai.io" target="_blank">
Chat dApp
</a>
<a class="dropdown-item" href="https://t.me/liberchat_bot" target="_blank">
Telegram bot
</a>
</div>
</div>
</div>
Expand All @@ -43,6 +53,6 @@ const showApps = ref(false);

<style lang="postcss" scoped>
.dropdown-item {
@apply text-neutral-800 block px-4 py-2 text-sm hover:text-primary hover:bg-secondary;
@apply text-neutral-800 block px-4 py-2 text-sm hover:text-primary hover:bg-secondary
}
</style>
4 changes: 2 additions & 2 deletions src/pages/Home/PartnersSection.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<div class="flex flex-col items-center justify-center h-full">
<p class="body-large font-bold text-center">Proudly supported by</p>
<div class="flex mt-6 space-x-9">
<img alt="Aleph.im logo" src="../../assets/aleph.svg" />
<img alt="TwentySixCloud logo" src="../../assets/twentysix.svg" />
<img alt="Aleph.im logo" src="../../assets/aleph.svg">
<img alt="TwentySixCloud logo" src="../../assets/twentysix.svg">
</div>
</div>
</div>
Expand Down

0 comments on commit b96d825

Please sign in to comment.