51 lines
1.4 KiB
Plaintext
51 lines
1.4 KiB
Plaintext
|
---
|
||
|
import Layout from '~/layouts/PageLayout.astro';
|
||
|
|
||
|
import Hero from '~/components/widgets/Hero.astro';
|
||
|
|
||
|
import INCAStats from './incastats.astro'
|
||
|
import Partners from './partners.astro'
|
||
|
import Purpose from './purpose.astro'
|
||
|
|
||
|
const metadata = {
|
||
|
title: 'INCA — Decentralized Autonomous Cloud',
|
||
|
ignoreTitleTemplate: true,
|
||
|
};
|
||
|
---
|
||
|
|
||
|
<Layout metadata={metadata}>
|
||
|
<!-- Hero Widget ******************* -->
|
||
|
|
||
|
<Hero
|
||
|
actions={[
|
||
|
{
|
||
|
variant: 'primary',
|
||
|
text: 'Get INCA Nodes',
|
||
|
href: 'https://threefold.io',
|
||
|
target: '_blank',
|
||
|
icon: 'tabler:brand-minecraft',
|
||
|
},
|
||
|
{ text: 'Learn more', href: '#features' },
|
||
|
]}
|
||
|
>
|
||
|
<Fragment slot="title">
|
||
|
<span class="text-accent dark:text-white highlight"> Project INCA<br></span> ecosystem<br><br>
|
||
|
</Fragment>
|
||
|
|
||
|
<Fragment slot="subtitle">
|
||
|
<span class="hidden sm:inline">
|
||
|
<span class="font-semibold">Project INCA</span> is an open-source DePIN cloud that allows <br>anyone anywhere to become a cloud service provider.<br></span
|
||
|
>
|
||
|
<span class="block mb-1 sm:hidden font-bold text-blue-600">INCA, DePIN Cloud</span>
|
||
|
<i>Earn <span class="font-semibold">INCA</span> rewards by providing <span class="font-semibold">IN</span>ternet <span class="font-semibold">CA</span>pacity to the world!</i>
|
||
|
</Fragment>
|
||
|
</Hero>
|
||
|
|
||
|
|
||
|
<Partners/>
|
||
|
|
||
|
<Purpose/>
|
||
|
|
||
|
<INCAStats/>
|
||
|
|