19 lines
649 B
Vue
19 lines
649 B
Vue
|
<template>
|
||
|
<div class="sponsors">
|
||
|
<h4>Sponsors</h4>
|
||
|
<NuxtLink to="https://bitcoinmagazine.com/" target="_BLANK">
|
||
|
<img src="/img/sponsors/b.tc.svg" alt="Bitcoin Magazine" />
|
||
|
</NuxtLink>
|
||
|
<NuxtLink to="https://inspin.co/" target="_BLANK">
|
||
|
<img src="/img/sponsors/inspin.svg" alt="Inspin Digital" />
|
||
|
</NuxtLink>
|
||
|
<!--
|
||
|
<NuxtLink to="https://btcpayserver.org/" target="_BLANK">
|
||
|
<img src="/img/sponsors/btcpay.svg" alt="BTCPay Server" />
|
||
|
</NuxtLink>
|
||
|
-->
|
||
|
<NuxtLink to="mailto:hello@crbtc.org" >
|
||
|
<img src="/img/sponsors/sponsor.svg" alt="Your Logo Here" />
|
||
|
</NuxtLink>
|
||
|
</div>
|
||
|
</template>
|