s
This commit is contained in:
parent
56ddc88bba
commit
f3865e3ca4
@ -1,11 +1,22 @@
|
|||||||
---
|
---
|
||||||
import { Icon } from 'astro-icon/components';
|
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">
|
<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">
|
<div class="max-w-6xl mx-auto px-4 sm:px-6 py-4 text-md text-center font-medium">
|
||||||
<span class="font-bold">
|
<span class="font-bold">
|
||||||
<Icon name="tabler:info-square" class="w-5 h-5 inline-block align-text-bottom" /> INCA:</span
|
<Icon name="tabler:info-square" class="w-5 h-5 inline-block align-text-bottom" /> {title}</span
|
||||||
> The Internet as intended
|
> {content}
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
@ -9,7 +9,7 @@ import CallToAction from '~/components/widgets/CallToAction.astro';
|
|||||||
import Hero from '~/components/widgets/Hero.astro';
|
import Hero from '~/components/widgets/Hero.astro';
|
||||||
import InternetCapacity from './internetcapacity.astro';
|
import InternetCapacity from './internetcapacity.astro';
|
||||||
import NodeSteps from './steps_node_buy.astro'
|
import NodeSteps from './steps_node_buy.astro'
|
||||||
|
import Note from '~/components/widgets/Note.astro';
|
||||||
const metadata = {
|
const metadata = {
|
||||||
title: 'Farming',
|
title: 'Farming',
|
||||||
};
|
};
|
||||||
@ -52,7 +52,10 @@ const metadata = {
|
|||||||
description: '8 Logical CPU Cores',
|
description: '8 Logical CPU Cores',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
description: '2,000-6,000 INCA rewards per month.',
|
description: 'Upto 1,000 INCA/month for utilization.',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
description: 'For first 5,000 nodes, 250 INCA/month additional for first 24 months.',
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
callToAction: {
|
callToAction: {
|
||||||
@ -77,7 +80,10 @@ const metadata = {
|
|||||||
description: '16 Logical CPU Cores',
|
description: '16 Logical CPU Cores',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
description: '4,000-12,000 INCA rewards per month.',
|
description: 'Upto 4,000 INCA/month for utilization.',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
description: 'For first 1,000 nodes, 1,000 INCA/month additional for first 24 months.',
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
callToAction: {
|
callToAction: {
|
||||||
@ -104,7 +110,10 @@ const metadata = {
|
|||||||
description: 'RTX 4900 GPU',
|
description: 'RTX 4900 GPU',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
description: '10,000-30,000 INCA rewards per month.',
|
description: 'Upto 10,000 INCA/month for utilization.',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
description: 'For first 1,000 nodes, 2,000 INCA/month additional for first 24 months.',
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
callToAction: {
|
callToAction: {
|
||||||
@ -118,7 +127,7 @@ const metadata = {
|
|||||||
|
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
<Note content="Initial price of 1 INCA is expected to be about 0.05 EUR" title="" />
|
||||||
|
|
||||||
<!-- Features3 Widget ************** -->
|
<!-- Features3 Widget ************** -->
|
||||||
|
|
||||||
|
@ -62,7 +62,7 @@ const metadata = {
|
|||||||
|
|
||||||
<!-- Note Widget ******************* -->
|
<!-- Note Widget ******************* -->
|
||||||
|
|
||||||
<Note />
|
<Note content="The Internet as intended" title="INCA" />
|
||||||
|
|
||||||
<!-- Features Widget *************** -->
|
<!-- Features Widget *************** -->
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user