mirror of
https://github.com/dreamhunter2333/cloudflare_temp_email.git
synced 2026-09-10 18:07:00 +08:00
48 lines
1.3 KiB
Vue
48 lines
1.3 KiB
Vue
<script setup>
|
|
import { GithubAlt, Discord, Telegram } from '@vicons/fa'
|
|
import { useGlobalState } from '../../store'
|
|
const { announcement } = useGlobalState()
|
|
</script>
|
|
|
|
<template>
|
|
<div class="center">
|
|
<n-card :bordered="false" embedded>
|
|
<div v-html="announcement"></div>
|
|
<n-button tag="a" target="_blank" href="https://github.com/dreamhunter2333/cloudflare_temp_email">
|
|
<template #icon>
|
|
<n-icon :component="GithubAlt" />
|
|
</template>
|
|
Github
|
|
</n-button>
|
|
<n-button tag="a" target="_blank" href="https://discord.gg/dQEwTWhA6Q">
|
|
<template #icon>
|
|
<n-icon :component="Discord" />
|
|
</template>
|
|
Discord
|
|
</n-button>
|
|
<n-button tag="a" target="_blank" href="https://t.me/cloudflare_temp_email">
|
|
<template #icon>
|
|
<n-icon :component="Telegram" />
|
|
</template>
|
|
Telegram
|
|
</n-button>
|
|
</n-card>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.center {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.n-card {
|
|
max-width: 800px;
|
|
}
|
|
|
|
.n-button {
|
|
margin-top: 10px;
|
|
margin-left: 10px;
|
|
}
|
|
</style>
|