Files
poptong 83b162d2bd
Some checks failed
🚀 Deploy - Demo / deployment (push) Has been cancelled
🔧 웹훅 URL을 HTTPS로 수정
- 웹훅 URL을 https://admin.youtooplay.com/webhook로 변경
- Nginx 리버스 프록시 설정 파일 추가
- 배포 가이드 업데이트
2025-10-01 01:47:51 +09:00

42 lines
1.1 KiB
Vue

<template>
<div class="h-100 d-flex align-center justify-md-space-between justify-center">
<!-- 👉 Footer: left content -->
<span class="d-flex align-center">
&copy;
{{ new Date().getFullYear() }}
Made With
<VIcon
icon="bx-heart"
color="error"
size="1.25rem"
class="mx-1"
/>
By <a
href="https://themeselection.com"
target="_blank"
rel="noopener noreferrer"
class="text-primary ms-1"
>ThemeSelection</a>
</span>
<!-- 👉 Footer: right content -->
<span class="d-md-flex gap-x-4 text-primary d-none">
<a
href="https://themeselection.com/license/"
target="noopener noreferrer"
>License</a>
<a
href="https://themeselection.com/"
target="noopener noreferrer"
>More Themes</a>
<a
href="https://demos.themeselection.com/sneat-vuetify-vuejs-admin-template/documentation/"
target="noopener noreferrer"
>Documentation</a>
<a
href="https://themeselection.com/support/"
target="noopener noreferrer"
>Support</a>
</span>
</div>
</template>