mirror of
https://iceshrimp.dev/Crimekillz/jointrashposs.git
synced 2024-11-22 17:03:50 +01:00
25 lines
886 B
Vue
25 lines
886 B
Vue
<template>
|
|
<div>
|
|
<h2 class="mb-12 text-2xl lg:text-3xl text-center font-bold font-title">{{ $t('_landing._sponsors.title') }}</h2>
|
|
<div class="mx-auto max-w-[240px] space-y-8 [&>*]:block">
|
|
<!-- スポンサーを入れるときは、リンクとアイコンを適当に並べるだけでいい感じになります -->
|
|
<NuxtLink to="https://rss3.io/" target="_blank">
|
|
<img src="/img/sponsors/rss3.svg" />
|
|
</NuxtLink>
|
|
<NuxtLink to="https://skeb.jp/" target="_blank">
|
|
<img src="/img/sponsors/skeb.svg" />
|
|
</NuxtLink>
|
|
<NuxtLink to="https://www.dotchain.ltd/advirth" target="_blank">
|
|
<img src="/img/sponsors/dcadvirth.png" />
|
|
</NuxtLink>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style> |