From f3865e3ca45f38a9ef0692f8b7618ae9292a6cd1 Mon Sep 17 00:00:00 2001 From: kristof de spiegeleer Date: Sat, 8 Jun 2024 17:37:47 +0300 Subject: [PATCH] s --- src/components/widgets/Note.astro | 15 +++++++++++++-- src/pages/farming.astro | 25 +++++++++++++++++-------- src/pages/index.astro | 2 +- 3 files changed, 31 insertions(+), 11 deletions(-) diff --git a/src/components/widgets/Note.astro b/src/components/widgets/Note.astro index b0c8f40..71297dd 100644 --- a/src/components/widgets/Note.astro +++ b/src/components/widgets/Note.astro @@ -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; + ---
- INCA: The Internet as intended + {title} {content}
diff --git a/src/pages/farming.astro b/src/pages/farming.astro index 5060dc5..eadc3ae 100644 --- a/src/pages/farming.astro +++ b/src/pages/farming.astro @@ -9,7 +9,7 @@ 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', }; @@ -52,8 +52,11 @@ const metadata = { 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: { target: '_blank', @@ -77,8 +80,11 @@ const metadata = { 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: { target: '_blank', @@ -104,8 +110,11 @@ const metadata = { 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: { target: '_blank', @@ -118,7 +127,7 @@ const metadata = { /> - + diff --git a/src/pages/index.astro b/src/pages/index.astro index 9a5fc78..100c943 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -62,7 +62,7 @@ const metadata = { - +