Files
admin/src/components/SectionBannerStarOnGitHub.vue
koh 7f02e92304
Some checks failed
Build / build (push) Has been cancelled
Initial commit
2025-04-28 13:51:59 +07:00

22 lines
611 B
Vue

<script setup>
import { mdiGithub } from '@mdi/js'
import BaseButton from '@/components/BaseButton.vue'
import SectionBanner from '@/components/SectionBanner.vue'
import { gradientBgPinkRed } from '@/colors'
</script>
<template>
<SectionBanner :class="gradientBgPinkRed">
<h1 class="text-3xl text-white mb-6">Like the project? Please star on <b>GitHub</b> ;-)</h1>
<div>
<BaseButton
href="https://github.com/justboil/admin-one-vue-tailwind"
:icon="mdiGithub"
label="GitHub"
target="_blank"
rounded-full
/>
</div>
</SectionBanner>
</template>