29 lines
664 B
Vue
29 lines
664 B
Vue
|
<script setup>
|
||
|
useHead({
|
||
|
title: 'Capital Region Bitcoin Network',
|
||
|
meta: [
|
||
|
{
|
||
|
name: 'description',
|
||
|
content: `Welcome to the Capital Region Bitcoin Network. Come learn and talk about
|
||
|
Bitcoin. Meet new people, ask questions, suggest topics, or just come and hang out.`
|
||
|
},
|
||
|
],
|
||
|
})
|
||
|
|
||
|
const { isDesktopOrTablet } = useDevice();
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div class="index">
|
||
|
|
||
|
<div class="hero">
|
||
|
<h3>Welcome to our <br v-if="isDesktopOrTablet" /><span>Bitcoin</span> community.</h3>
|
||
|
</div>
|
||
|
|
||
|
<IndexSponsors />
|
||
|
<IndexGuides />
|
||
|
<IndexEvents />
|
||
|
<IndexBanner />
|
||
|
|
||
|
</div>
|
||
|
</template>
|