development to main #49
0
build_sync.sh
Normal file → Executable file
0
build_sync.sh
Normal file → Executable file
@ -1,11 +1,22 @@
|
||||
---
|
||||
import { Icon } from 'astro-icon/components';
|
||||
|
||||
export interface Props {
|
||||
title?: string;
|
||||
content?: string;
|
||||
}
|
||||
|
||||
const {
|
||||
title = await Astro.slots.render('title'),
|
||||
content = await Astro.slots.render('content'),
|
||||
} = Astro.props;
|
||||
|
||||
---
|
||||
|
||||
<section class="bg-blue-50 dark:bg-slate-800 not-prose">
|
||||
<div class="max-w-6xl mx-auto px-4 sm:px-6 py-4 text-md text-center font-medium">
|
||||
<span class="font-bold">
|
||||
<Icon name="tabler:info-square" class="w-5 h-5 inline-block align-text-bottom" /> INCA:</span
|
||||
> The Internet as intended
|
||||
<Icon name="tabler:info-square" class="w-5 h-5 inline-block align-text-bottom" /> {title}</span
|
||||
> {content}
|
||||
</div>
|
||||
</section>
|
||||
|
@ -19,7 +19,7 @@ export const headerData = {
|
||||
href: getPermalink('/contact'),
|
||||
},
|
||||
],
|
||||
actions: [{ text: 'Get INCA Nodes', href: 'https://threefold.io', target: '_blank' }],
|
||||
actions: [{ text: 'Get INCA Nodes', href: 'https://csnkyhwp8b4.typeform.com/to/SnfEE9pj', target: '_blank' }],
|
||||
};
|
||||
|
||||
export const footerData = {
|
||||
@ -36,7 +36,8 @@ export const footerData = {
|
||||
title: 'Join the Cloud',
|
||||
links: [
|
||||
{ text: 'Farming', href: '/farming' },
|
||||
{ text: 'DIY Nodes', href: 'https://manual.grid.tf/documentation/farmers/3node_building/3node_building.html' },
|
||||
{ text: 'Get INCA Nodes', href: 'https://csnkyhwp8b4.typeform.com/to/SnfEE9pj' },
|
||||
{ text: 'Build INCA Nodes', href: 'https://manual.grid.tf/documentation/farmers/3node_building/3node_building.html' },
|
||||
],
|
||||
},
|
||||
{
|
||||
|
@ -21,7 +21,7 @@ const metadata = {
|
||||
{
|
||||
variant: 'primary',
|
||||
text: 'Get INCA Nodes',
|
||||
href: 'https://threefold.io',
|
||||
href: 'https://csnkyhwp8b4.typeform.com/to/SnfEE9pj',
|
||||
target: '_blank',
|
||||
icon: 'tabler:brand-minecraft',
|
||||
},
|
||||
|
@ -9,12 +9,16 @@ import CallToAction from '~/components/widgets/CallToAction.astro';
|
||||
import Hero from '~/components/widgets/Hero.astro';
|
||||
import InternetCapacity from './internetcapacity.astro';
|
||||
import NodeSteps from './steps_node_buy.astro'
|
||||
|
||||
import Note from '~/components/widgets/Note.astro';
|
||||
const metadata = {
|
||||
title: 'Farming',
|
||||
};
|
||||
|
||||
|
||||
---
|
||||
|
||||
|
||||
|
||||
<Layout metadata={metadata}>
|
||||
<!-- HeroText Widget ******************* -->
|
||||
|
||||
@ -23,6 +27,8 @@ const metadata = {
|
||||
title="Become <br>an Internet Capacity <br>Provider"
|
||||
/>
|
||||
|
||||
|
||||
|
||||
<!-- Pricing Widget ******************* -->
|
||||
|
||||
<Prices
|
||||
@ -46,13 +52,16 @@ const metadata = {
|
||||
description: '8 Logical CPU Cores',
|
||||
},
|
||||
{
|
||||
description: '2,000-6,000 INCA rewards per month.',
|
||||
description: 'Up to 1,000 INCA/month for utilization',
|
||||
},
|
||||
{
|
||||
description: 'For first 5,000 nodes, 250 INCA/month additional for first 24 months',
|
||||
}
|
||||
],
|
||||
callToAction: {
|
||||
target: '_blank',
|
||||
text: 'Get INCA Nodes',
|
||||
href: 'https://threefold.io',
|
||||
href: 'https://csnkyhwp8b4.typeform.com/to/SnfEE9pj',
|
||||
},
|
||||
},
|
||||
{
|
||||
@ -71,13 +80,16 @@ const metadata = {
|
||||
description: '16 Logical CPU Cores',
|
||||
},
|
||||
{
|
||||
description: '4,000-12,000 INCA rewards per month.',
|
||||
description: 'Up to 4,000 INCA/month for utilization',
|
||||
},
|
||||
{
|
||||
description: 'For first 1,000 nodes, 1,000 INCA/month additional for first 24 months',
|
||||
}
|
||||
],
|
||||
callToAction: {
|
||||
target: '_blank',
|
||||
text: 'Get INCA Nodes',
|
||||
href: 'https://threefold.io',
|
||||
href: 'https://csnkyhwp8b4.typeform.com/to/SnfEE9pj',
|
||||
},
|
||||
hasRibbon: true,
|
||||
ribbonTitle: 'popular',
|
||||
@ -98,13 +110,16 @@ const metadata = {
|
||||
description: 'RTX 4900 GPU',
|
||||
},
|
||||
{
|
||||
description: '10,000-30,000 INCA rewards per month.',
|
||||
description: 'Up to 10,000 INCA/month for utilization',
|
||||
},
|
||||
{
|
||||
description: 'For first 1,000 nodes, 2,000 INCA/month additional for first 24 months',
|
||||
}
|
||||
],
|
||||
callToAction: {
|
||||
target: '_blank',
|
||||
text: 'Get INCA Nodes',
|
||||
href: 'https://threefold.io',
|
||||
href: 'https://csnkyhwp8b4.typeform.com/to/SnfEE9pj',
|
||||
},
|
||||
},
|
||||
]}
|
||||
@ -112,7 +127,7 @@ const metadata = {
|
||||
|
||||
/>
|
||||
|
||||
|
||||
<Note content="The initial price of 1 INCA is expected to be around 0.05 EUR" title="" />
|
||||
|
||||
<!-- Features3 Widget ************** -->
|
||||
|
||||
@ -246,4 +261,6 @@ const metadata = {
|
||||
},
|
||||
]}
|
||||
/>
|
||||
|
||||
</Layout>
|
||||
|
||||
|
@ -34,7 +34,7 @@ const metadata = {
|
||||
{
|
||||
variant: 'primary',
|
||||
text: 'Get INCA Nodes',
|
||||
href: 'https://threefold.io',
|
||||
href: 'https://csnkyhwp8b4.typeform.com/to/SnfEE9pj',
|
||||
target: '_blank',
|
||||
icon: 'tabler:brand-minecraft',
|
||||
},
|
||||
@ -62,7 +62,7 @@ const metadata = {
|
||||
|
||||
<!-- Note Widget ******************* -->
|
||||
|
||||
<Note />
|
||||
<Note content="The Internet as intended" title="INCA –" />
|
||||
|
||||
<!-- Features Widget *************** -->
|
||||
|
||||
@ -343,7 +343,7 @@ const metadata = {
|
||||
{
|
||||
variant: 'primary',
|
||||
text: 'Get INCA Nodes',
|
||||
href: 'https://threefold.io',
|
||||
href: 'https://csnkyhwp8b4.typeform.com/to/SnfEE9pj',
|
||||
target: '_blank',
|
||||
icon: 'tabler:brand-minecraft',
|
||||
},
|
||||
|
@ -276,7 +276,7 @@ const metadata = {
|
||||
variant: 'primary',
|
||||
target: '_blank',
|
||||
text: 'Get INCA Nodes',
|
||||
href: 'https://threefold.io',
|
||||
href: 'https://csnkyhwp8b4.typeform.com/to/SnfEE9pj',
|
||||
icon: 'tabler:brand-minecraft',
|
||||
},
|
||||
]}
|
||||
|
Loading…
Reference in New Issue
Block a user