Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
HugoRCD committed Jan 23, 2025
1 parent 0dc99f4 commit e24115d
Showing 1 changed file with 25 additions and 9 deletions.
34 changes: 25 additions & 9 deletions apps/lp/app/components/layout/Navbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,30 @@ const props = defineProps<{
}>()
const items = [
{
label: 'Vault',
to: '/vault',
},
{
to: '/blog',
label: 'Blog',
},
{
label: 'Features',
slot: 'features',
children: [
{
label: 'Push / Pull',
description: 'Sync your secrets with Shelve',
icon: 'heroicons:arrows-up-down-solid',
to: '/cli/push-pull'
},
{
label: 'Github secrets',
description: 'Send your secrets on Github',
icon: 'simple-icons:github',
to: '/integrations/github'
},
{
to: '/roadmap',
label: 'Roadmap',
Expand All @@ -18,10 +39,6 @@ const items = [
}
]
},
{
label: 'Vault',
to: '/vault',
},
{
label: 'Docs',
children: [
Expand Down Expand Up @@ -51,10 +68,6 @@ const items = [
}
]
},
{
to: '/blog',
label: 'Blog',
},
{
label: 'Company',
children: [
Expand Down Expand Up @@ -109,7 +122,10 @@ const navigationUi = computed(() => ({
<template #right>
<div class="flex items-center gap-2">
<div>
<UButton label="Open App" size="sm" @click="navigateTo(`https://app.shelve.cloud/login`, { external: true })" />
<UButton size="sm" @click="navigateTo(`https://app.shelve.cloud/login`, { external: true })">
Open App
<UKbd value="S" />
</UButton>
</div>
</div>
</template>
Expand Down

0 comments on commit e24115d

Please sign in to comment.