|
| 1 | +<script setup lang="ts"> |
| 2 | +
|
| 3 | +import { Bell, FlaskConical, House, User } from 'lucide-vue-next'; |
| 4 | +
|
| 5 | +import WalletConnect from '@/components/popups/WalletConnect.vue'; |
| 6 | +
|
| 7 | +</script> |
| 8 | + |
| 9 | +<template> |
| 10 | + <!-- TODO: Adjust style, buttons, etc --> |
| 11 | + <header class="flex flex-col justify-between h-full w-full"> |
| 12 | + <div class="flex flex-col justify-between gap-22 w-full xl:items-start items-end"> |
| 13 | + <nav class="flex flex-col gap-20"> |
| 14 | + <RouterLink to="/" class="h-[52px]"> |
| 15 | + <span class="hidden xl:inline text-2xl font-semibold">Dither</span> |
| 16 | + </RouterLink> |
| 17 | + |
| 18 | + <div class="flex flex-col gap-3"> |
| 19 | + <RouterLink to="/" class="flex flex-row items-center gap-3"> |
| 20 | + <div class="flex items-center justify-center h-[52px]"> |
| 21 | + <House class="size-7" /> |
| 22 | + </div> |
| 23 | + <span class="hidden xl:inline text-lg font-medium">Home</span> |
| 24 | + </RouterLink> |
| 25 | + |
| 26 | + <RouterLink to="/notifications" class="flex flex-row items-center gap-3"> |
| 27 | + <div class="flex items-center justify-center h-[52px]"> |
| 28 | + <Bell class="size-7" /> |
| 29 | + </div> |
| 30 | + <span class="hidden xl:inline text-lg font-medium">Notifications</span> |
| 31 | + </RouterLink> |
| 32 | + |
| 33 | + <RouterLink to="/profile/:address" class="flex flex-row items-center gap-3"> |
| 34 | + <div class="flex items-center justify-center h-[52px]"> |
| 35 | + <User class="size-7" /> |
| 36 | + </div> |
| 37 | + <span class="hidden xl:inline text-lg font-medium">My Profile</span> |
| 38 | + </RouterLink> |
| 39 | + |
| 40 | + <RouterLink to="/post?hash=9c0f718289998024ce7c83b24f350e3fc4fa0c3d5c421c5042422c8721eec3e0" |
| 41 | + class="flex flex-row items-center gap-3"> |
| 42 | + <div class="flex items-center justify-center h-[52px]"> |
| 43 | + <FlaskConical class="size-7" /> |
| 44 | + </div> |
| 45 | + <span class="hidden xl:inline text-lg font-medium">Post #1</span> |
| 46 | + </RouterLink> |
| 47 | + </div> |
| 48 | + </nav> |
| 49 | + |
| 50 | + <WalletConnect /> |
| 51 | + </div> |
| 52 | + |
| 53 | + <div>Stuff here?</div> |
| 54 | + </header> |
| 55 | +</template> |
0 commit comments