Skip to content
This repository has been archived by the owner on Jun 22, 2024. It is now read-only.

Commit

Permalink
chore: updated devtools links
Browse files Browse the repository at this point in the history
  • Loading branch information
Flowko committed Dec 15, 2023
1 parent baec097 commit 9141298
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions client/components/EmptyState.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,42 +5,42 @@ const items = [
description: 'A set of components to build your next email template.',
icon: 'i-fluent-archive-multiple-24-regular',
background: 'bg-emerald-600',
to: 'https://www.vuemail.net/getting-started#components',
to: 'https://vuemail.net/getting-started#components',
},
{
title: 'Integrations',
description: 'Integrate with your favorite tools and services.',
icon: 'i-fluent-crop-interim-24-regular',
background: 'bg-yellow-600',
to: 'https://www.vuemail.net/getting-started#integrations',
to: 'https://vuemail.net/getting-started#integrations',
},
{
title: 'SSR',
description: 'Server-side rendering for your email templates.',
icon: 'i-fluent-server-24-regular',
background: 'bg-indigo-600',
to: 'https://www.vuemail.net/getting-started/ssr',
to: 'https://vuemail.net/getting-started/ssr',
},
{
title: 'Releases',
description: 'Stay up to date with the latest releases.',
icon: 'i-fluent-rocket-24-regular',
background: 'bg-pink-600',
to: 'https://github.com/Dave136/vue-email/releases',
to: 'https://github.com/vue-email/nuxt/releases',
},
{
title: 'Examples',
description: 'A collection of examples to get you started.',
icon: 'i-fluent-text-grammar-options-24-filled',
background: 'bg-purple-600',
to: 'https://www.vuemail.net/playground',
to: 'https://vuemail.net/playground',
},
{
title: 'GitHub',
description: 'Contribute to Vue Email on GitHub.',
icon: 'i-ph-github-logo',
background: 'bg-gray-600',
to: 'https://github.com/Dave136/vue-email',
to: 'https://github.com/vue-email/vue-email',
},
]
</script>
Expand Down
4 changes: 2 additions & 2 deletions client/components/HeaderButtons.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ const isEmailRoute = computed(() => route.name === 'email-file')
<UButton icon="i-ph-arrow-counter-clockwise-bold" size="sm" color="gray" variant="solid" @click="reloadTemplate = true" />
</UTooltip>
<UTooltip text="Read Documentation">
<UButton icon="i-ph-read-cv-logo-bold" size="sm" color="gray" variant="solid" label="Docs" to="https://www.vuemail.net/" target="_blank" />
<UButton icon="i-ph-read-cv-logo-bold" size="sm" color="gray" variant="solid" label="Docs" to="https://vuemail.net/" target="_blank" />
</UTooltip>
<UTooltip text="View Github Repo">
<UButton icon="i-simple-icons-github" size="sm" color="gray" variant="solid" to="https://github.com/Dave136/vue-email" target="_blank" />
<UButton icon="i-simple-icons-github" size="sm" color="gray" variant="solid" to="https://github.com/vue-email/vue-email" target="_blank" />
</UTooltip>
</div>
</template>
2 changes: 1 addition & 1 deletion client/components/TopNav.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { version } from '../../package.json'
<UIcon name="i-twemoji-incoming-envelope" />
<h2 class="font-semibold text-gray-900 dark:text-white leading-tight">Vue Email</h2>
</NuxtLink>
<NuxtLink class="flex items-center gap-2" target="_blank" :to="`https://github.com/Dave136/vue-email/releases/tag/v${version}`">
<NuxtLink class="flex items-center gap-2" target="_blank" :to="`https://github.com/vue-email/nuxt/releases/tag/v${version}`">
<UBadge color="primary" variant="subtle"> v{{ version }} </UBadge>
</NuxtLink>
</div>
Expand Down

0 comments on commit 9141298

Please sign in to comment.