26 lines
546 B
Vue
26 lines
546 B
Vue
<script setup>
|
|
useHead({
|
|
title: 'Inspin Digital | Creating a more decentralized web',
|
|
meta: [
|
|
{
|
|
name: 'description',
|
|
content: `Inspin Digital is creating infrastructure & developing services to promote a more decentralized web. Learn more about us and see the products we are working on.`
|
|
},
|
|
],
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div class="index">
|
|
|
|
<!-- Hero -->
|
|
<IndexHero />
|
|
|
|
<!-- Principles -->
|
|
<IndexPrinciples />
|
|
|
|
<!-- Articles -->
|
|
<IndexNotified/>
|
|
|
|
</div>
|
|
</template> |