Compare commits
No commits in common. 'de00040a8aec7c0d2095d1be3a45cc5a33bc5dd9' and '56b5fc49f371933bf9ab874739dc9c298ea3e50e' have entirely different histories.
de00040a8a
...
56b5fc49f3
@ -1,14 +1,22 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="bg-secondary flex h-fit w-full flex-row items-center justify-center p-2">
|
<div
|
||||||
<div class="flex w-full max-w-3xl items-center justify-between gap-4">
|
class="bg-secondary flex h-fit w-full flex-row items-center justify-center p-2">
|
||||||
<div class="flex items-center gap-4 hover:cursor-pointer" @click="navigateTo('/notes')">
|
<div class="flex w-full max-w-3xl items-center justify-between gap-4">
|
||||||
<Icon class="text-blue-500" name="fa6-solid:book-open" />
|
<div
|
||||||
<p class="text-xl font-bold"> Notes </p>
|
class="flex items-center gap-4 hover:cursor-pointer"
|
||||||
</div>
|
@click="navigateTo('/notes')">
|
||||||
<div class="flex w-fit justify-end">
|
<Icon
|
||||||
<Icon class="bg-secondary rounded-full hover:cursor-pointer" @click="navigateTo('/profile')"
|
class="text-blue-500"
|
||||||
name="fa6-solid:circle-user" size="36" />
|
name="fa6-solid:book-open" />
|
||||||
</div>
|
<p class="text-xl font-bold"> Notes </p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<div class="flex w-fit justify-end">
|
||||||
|
<Icon
|
||||||
|
class="bg-secondary rounded-full hover:cursor-pointer"
|
||||||
|
@click="navigateTo('/profile')"
|
||||||
|
name="fa6-solid:circle-user"
|
||||||
|
size="36" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
Loading…
Reference in New Issue