-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
15529f3
commit b942b70
Showing
7 changed files
with
38 additions
and
33 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<template> | ||
<UApp> | ||
<UApp :tooltip="{ delayDuration: 0 }"> | ||
<Header transparent /> | ||
<NuxtPage /> | ||
</UApp> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,16 @@ | ||
<template> | ||
<NuxtLink to="https://github.com/next-orders/food" target="_blank"> | ||
<UButton | ||
icon="pixel:github" | ||
aria-label="GitHub" | ||
variant="ghost" | ||
color="primary" | ||
size="xl" | ||
/> | ||
</NuxtLink> | ||
<UTooltip text="GitHub"> | ||
<ULink to="https://github.com/next-orders/food" target="_blank"> | ||
<UButton | ||
leading-icon="pixel:github" | ||
aria-label="GitHub" | ||
variant="ghost" | ||
color="primary" | ||
size="xl" | ||
class="px-2 py-2 gap-1" | ||
> | ||
31 | ||
</UButton> | ||
</ULink> | ||
</UTooltip> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,13 @@ | ||
<template> | ||
<ClientOnly> | ||
<NuxtLink to="/" class="flex items-center gap-2 leading-tight hover:opacity-80 duration-200"> | ||
<img | ||
alt="Logo" | ||
src="~/assets/img/logo-full.png" | ||
class="h-12 w-auto" | ||
:class="{ hidden: isDark }" | ||
> | ||
<img | ||
alt="Logo Dark" | ||
src="~/assets/img/logo-full-dark.png" | ||
class="h-12 w-auto" | ||
:class="{ hidden: !isDark }" | ||
> | ||
</NuxtLink> | ||
</ClientOnly> | ||
</template> | ||
<ULink to="/" class="flex items-center gap-2 leading-tight hover:opacity-80 duration-200"> | ||
<img | ||
alt="Logo" | ||
src="~/assets/img/logo.png" | ||
class="h-12 w-auto" | ||
> | ||
|
||
<script setup lang="ts"> | ||
const colorMode = useColorMode() | ||
const isDark = computed(() => colorMode.value === 'dark') | ||
</script> | ||
<p class="uppercase text-2xl tracking-tight font-serif font-black"> | ||
Next Orders | ||
</p> | ||
</ULink> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters