Files
www_threefold_io/src/pages/Index.vue
2020-11-19 13:18:08 +02:00

50 lines
1.1 KiB
Vue

<template>
<Layout :hideHeader="true" :disableScroll="true">
<div class="container sm:pxi-0 mx-auto overflow-x-hidden">
<VacationCard
img=""
imgAlt=""
eyebrow=""
title=""
pricing=""
url=""
/>
<div class="flex flex-col h-screen">
<img class="pt-10" src="/img/new_home.png" alt="">
<div class="center py-10">
<!-- <h2 class="text-center">CO-CREATING BETTER FUTURES TOGETHER</h2> -->
<!-- <p class="text-center py-1">The ThreeFold Foundation is not ThreeFold rather, it is sparking a movement to bring the world <br> a truly peer-to-peer internet. We acknowledge and support the many people and organizations around the world <br> who bring crucial support to the growth and adoption of the ThreeFold Grid.</p> -->
</div>
</div>
<vue-markdown>
</vue-markdown>
</div>
</Layout>
</template>
<script>
import VueMarkdown from 'vue-markdown'
export default {
metaInfo: {
title: "Home"
},
components: {
VueMarkdown
}
};
</script>
<style scoped>
/* h2 {
padding-bottom: 8rem;
} */
</style> >