Skip to content

Commit

Permalink
feat: Add currently available links in footer component
Browse files Browse the repository at this point in the history
  • Loading branch information
pxor committed Jan 19, 2024
1 parent 08d0f22 commit 2ab9675
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions website/src/routes/Footer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@
<div class="flex flex-col space-y-6 mb-5">
<h2 class="text-lg font-semibold">Products</h2>
<a href="/" class="text-sm text-white hover:text-gray-300">DendrETH</a>
<a href="/" class="text-sm text-white hover:text-gray-300">Dashboard</a>
<a href="/" class="text-sm text-white hover:text-gray-300">DendrETH Wallet Demo</a>
<a href="#" class="text-sm text-white hover:text-gray-300">Dashboard</a>
<a href="/demo" class="text-sm text-white hover:text-gray-300">DendrETH Wallet Demo</a>
</div>
<div class="flex flex-col space-y-6 mb-5">
<h2 class="text-lg font-bold">Company</h2>
<a href="/" class="text-sm text-white hover:text-gray-300 hover:no-underline">Careers <span class="bg-[#ABC57D] text-white rounded-md px-2 py-1.5 hover:underline">We're hiring</span></a>
<a href="#" class="text-sm text-white hover:text-gray-300 hover:no-underline">Careers <span class="bg-[#ABC57D] text-white rounded-md px-2 py-1.5 hover:underline">We're hiring</span></a>
</div>
<div class="flex flex-col space-y-6">
<h2 class="text-lg font-bold">Developers</h2>
<a href="/" class="text-sm text-white hover:text-gray-300">Github</a>
<a href="/" class="text-sm text-white hover:text-gray-300">Documents</a>
<a href="https://github.com/metacraft-labs/DendrETH" target="_blank" class="text-sm text-white hover:text-gray-300">Github</a>
<a href="#" class="text-sm text-white hover:text-gray-300">Documents</a>
</div>
</div>
</div>
Expand All @@ -24,11 +24,11 @@
<span class="text-sm text-gray-500 hidden lg:block justify-self-start">
Copyright © 2019-2024<br />Metacraft Lab's Ltd
</span>
<a href="/" class="text-sm text-white hover:text-gray-400">Cookie manager</a>
<a href="/" class="text-sm text-white hover:text-gray-400">Terms of use</a>
<a href="/" class="text-sm text-white hover:text-gray-400">Privacy policy</a>
<a href="/" class="text-sm text-white hover:text-gray-400">Security</a>
<a href="/" class="text-sm text-white hover:text-gray-400">Trademark policy</a>
<a href="#" class="text-sm text-white hover:text-gray-400">Cookie manager</a>
<a href="#" class="text-sm text-white hover:text-gray-400">Terms of use</a>
<a href="#" class="text-sm text-white hover:text-gray-400">Privacy policy</a>
<a href="#" class="text-sm text-white hover:text-gray-400">Security</a>
<a href="#" class="text-sm text-white hover:text-gray-400">Trademark policy</a>
<span class="text-sm text-gray-500 hidden justify-self-end lg:block">
Design by KRS
</span>
Expand Down

0 comments on commit 2ab9675

Please sign in to comment.