Skip to content

Commit

Permalink
feat(nuxt-admin): add default home page
Browse files Browse the repository at this point in the history
  • Loading branch information
gravitano committed Feb 3, 2023
1 parent 5c5302c commit fd8a57e
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions starter/nuxt-admin/pages/index.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<script setup lang="ts">
useHead({
title: useAppConfig().admin.title,
});
</script>

<template>
<div class="container mx-auto p-6 text-center">
Visit the
<VBtn
text
flush
color="primary"
to="/admin"
suffix-icon="ri:external-link-line"
>
Admin
</VBtn>
page to see the admin interface.
</div>
</template>

2 comments on commit fd8a57e

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deploy preview for gits-nuxt-auth ready!

✅ Preview
https://gits-nuxt-auth-kwjm1261w-gravitano.vercel.app

Built with commit fd8a57e.
This pull request is being automatically deployed with vercel-action

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deploy preview for gits-nuxt-admin ready!

✅ Preview
https://gits-nuxt-admin-hg7cl8nzw-gravitano.vercel.app

Built with commit fd8a57e.
This pull request is being automatically deployed with vercel-action

Please sign in to comment.