Add links to github, home

This commit is contained in:
2025-09-27 22:07:47 +02:00
parent 90395271fc
commit d99dcb8c77

View File

@@ -1,7 +1,13 @@
<template> <template>
<UApp> <UApp>
<UHeader> <UHeader>
<template #title> <template #left>
<NuxtLink to="https://github.com/C9Glax/tranga"><Icon name="i-lucide-github" />API</NuxtLink>
<NuxtLink to="https://github.com/C9Glax/tranga-website"><Icon name="i-lucide-github" />Website</NuxtLink>
<NuxtLink to=""><Icon name="i-lucide-book-open" />Swagger</NuxtLink>
</template>
<template #default>
<NuxtLink to="/">
<div class="h-full flex gap-2 items-center"> <div class="h-full flex gap-2 items-center">
<img src="/blahaj.png" class="h-lh cursor-grab" /> <img src="/blahaj.png" class="h-lh cursor-grab" />
<p <p
@@ -10,10 +16,11 @@
-webkit-background-clip: text; -webkit-background-clip: text;
-webkit-text-fill-color: transparent; -webkit-text-fill-color: transparent;
" "
class="font-bold cursor-default text-3xl"> class="font-bold cursor-pointer text-3xl">
Tranga Tranga
</p> </p>
</div> </div>
</NuxtLink>
</template> </template>
<template #right> <template #right>
<UButton icon="i-lucide-plus" to="/search">Add</UButton> <UButton icon="i-lucide-plus" to="/search">Add</UButton>
@@ -28,4 +35,5 @@
</UMain> </UMain>
</UApp> </UApp>
</template> </template>
<script setup lang="ts"></script> <script setup lang="ts">
</script>