updated landing page and overall site
This commit is contained in:
277
src/pages/farming.astro
Normal file
277
src/pages/farming.astro
Normal file
@@ -0,0 +1,277 @@
|
||||
---
|
||||
import Layout from '~/layouts/PageLayout.astro';
|
||||
import HeroText from '~/components/widgets/HeroText.astro';
|
||||
import Prices from '~/components/widgets/Pricing.astro';
|
||||
import FAQs from '~/components/widgets/FAQs.astro';
|
||||
import Steps from '~/components/widgets/Steps.astro';
|
||||
import Features3 from '~/components/widgets/Features3.astro';
|
||||
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'
|
||||
|
||||
const metadata = {
|
||||
title: 'Farming',
|
||||
};
|
||||
---
|
||||
|
||||
<Layout metadata={metadata}>
|
||||
<!-- HeroText Widget ******************* -->
|
||||
|
||||
|
||||
<Hero
|
||||
actions={[
|
||||
{
|
||||
variant: 'primary',
|
||||
text: 'Get INCA Nodes',
|
||||
href: 'https://threefold.io',
|
||||
target: '_blank',
|
||||
icon: 'tabler:brand-minecraft',
|
||||
},
|
||||
{ text: 'Learn more', href: '#nodesspecs' },
|
||||
]}
|
||||
>
|
||||
<Fragment slot="title">
|
||||
Become an<br>
|
||||
<InternetCapacity/>
|
||||
<br>Provider<br>
|
||||
</Fragment>
|
||||
|
||||
<Fragment slot="subtitle">
|
||||
<span class="hidden sm:inline">
|
||||
<span class="font-semibold">Project INCA</span> is an open-source infrastructure 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>
|
||||
|
||||
|
||||
<!-- Pricing Widget ******************* -->
|
||||
|
||||
<Prices
|
||||
id="nodesspecs"
|
||||
title="Building the <br>Unbreakable Internet<br> One Node at a Time"
|
||||
subtitle="The Unbreakable Internet"
|
||||
prices={[
|
||||
{
|
||||
title: 'silver',
|
||||
subtitle: 'Optimal choice for end user utilization',
|
||||
price: 499,
|
||||
period: 'per node',
|
||||
items: [
|
||||
{
|
||||
description: '32 GB of Memory',
|
||||
},
|
||||
{
|
||||
description: '2,000 GB of SSD',
|
||||
},
|
||||
{
|
||||
description: '8 Logical CPU Cores',
|
||||
},
|
||||
{
|
||||
description: '2,000-6,000 INCA reward per month.',
|
||||
}
|
||||
],
|
||||
callToAction: {
|
||||
target: '_blank',
|
||||
text: 'Get INCA Nodes',
|
||||
href: 'https://threefold.io',
|
||||
},
|
||||
},
|
||||
{
|
||||
title: 'platinum',
|
||||
subtitle: 'Optimal choice for generic purpose cloud',
|
||||
price: 1999,
|
||||
period: 'per node',
|
||||
items: [
|
||||
{
|
||||
description: '64 GB of Memory',
|
||||
},
|
||||
{
|
||||
description: '2,000 GB of SSD + 10,000 GB of HDD',
|
||||
},
|
||||
{
|
||||
description: '16 Logical CPU Cores',
|
||||
},
|
||||
{
|
||||
description: '4,000-12,000 INCA reward per month.',
|
||||
}
|
||||
],
|
||||
callToAction: {
|
||||
target: '_blank',
|
||||
text: 'Get INCA Nodes',
|
||||
href: 'https://threefold.io',
|
||||
},
|
||||
hasRibbon: true,
|
||||
ribbonTitle: 'popular',
|
||||
},
|
||||
{
|
||||
title: 'AI',
|
||||
subtitle: 'Optimal choice for AI workloads',
|
||||
price: 3999,
|
||||
period: 'per node',
|
||||
items: [
|
||||
{
|
||||
description: '64 GB of Memory',
|
||||
},
|
||||
{
|
||||
description: '4,000 GB of SSD + 10,000 GB of HDD',
|
||||
},
|
||||
{
|
||||
description: 'RTX 4900 GPU',
|
||||
},
|
||||
{
|
||||
description: '10,000-30,000 INCA reward per month.',
|
||||
}
|
||||
],
|
||||
callToAction: {
|
||||
target: '_blank',
|
||||
text: 'Get INCA Nodes',
|
||||
href: 'https://threefold.io',
|
||||
},
|
||||
},
|
||||
]}
|
||||
|
||||
|
||||
/>
|
||||
|
||||
|
||||
|
||||
<!-- Features3 Widget ************** -->
|
||||
<NodeSteps/>
|
||||
|
||||
<Features3
|
||||
id="nodestech"
|
||||
title="Nodes Leading at the Edge"
|
||||
subtitle="Discover how our nodes provide a groundbreaking, reliable and robust technology"
|
||||
columns={2}
|
||||
items={[
|
||||
{
|
||||
title: 'Zero-OS Self-Healing Operating System',
|
||||
description: 'We like things well done and built to last, that\'s why we created our own self-healing operating system, Zero-OS.',
|
||||
icon: 'tabler:heart-up',
|
||||
},
|
||||
{
|
||||
title: 'Quantum Safe File System',
|
||||
description: 'We\'re aware of the war for your data. That\'s why we made QSFS, so you know your data is safe and future-proof.',
|
||||
icon: 'tabler:file-database',
|
||||
},
|
||||
{
|
||||
title: 'Energy Efficient',
|
||||
description: 'No one wants to pay for electricly needlessly. Our system uses 10x less energy compared to traditional systems.',
|
||||
icon: 'tabler:bolt',
|
||||
},
|
||||
{
|
||||
title: 'Truly Decentralized',
|
||||
description: `It's simple: everyone can now own their own part of the Internet. From the home setup to the datacenter farm.`,
|
||||
icon: 'tabler:topology-star',
|
||||
},
|
||||
{
|
||||
title: 'Data Sovereignty',
|
||||
description: 'You have now have complete control over your data placement. Your data is your data, forever.',
|
||||
icon: 'tabler:database',
|
||||
},
|
||||
{
|
||||
title: 'Mycelium Network',
|
||||
description: 'Cost-efficient, locality aware and peer-to-peer, Mycelium is the network for planetary scale.',
|
||||
icon: 'tabler:mushroom',
|
||||
},
|
||||
]}
|
||||
classes={{ container: 'max-w-5xl' }}
|
||||
/>
|
||||
|
||||
<!-- Steps Widget ****************** -->
|
||||
<!--
|
||||
<Steps
|
||||
title="Your Cloud Adventure <br>Begins Now"
|
||||
tagline="nothing beats simple"
|
||||
isReversed={true}
|
||||
items={[
|
||||
{
|
||||
title: 'Explore nodes',
|
||||
icon: 'tabler:number-1',
|
||||
},
|
||||
{
|
||||
title: 'Select a node model',
|
||||
icon: 'tabler:number-2',
|
||||
},
|
||||
{
|
||||
title: 'Visit the store',
|
||||
icon: 'tabler:number-3',
|
||||
},
|
||||
{
|
||||
title: 'Confirm your order',
|
||||
icon: 'tabler:number-4',
|
||||
},
|
||||
{
|
||||
title: 'Receive the node',
|
||||
icon: 'tabler:number-5',
|
||||
},
|
||||
{
|
||||
title: 'Plug in electricity and Internet',
|
||||
icon: 'tabler:number-6',
|
||||
},
|
||||
{
|
||||
title: 'Earn rewards for hosting',
|
||||
icon: 'tabler:number-7',
|
||||
},
|
||||
]}
|
||||
image={{
|
||||
src: '~/assets/images/trail.jpg',
|
||||
alt: 'Steps image',
|
||||
}}
|
||||
/> -->
|
||||
|
||||
<!-- FAQs Widget ******************* -->
|
||||
|
||||
<FAQs
|
||||
id="farmingfaq"
|
||||
title="Farming FAQs"
|
||||
subtitle="Choosing the right node for you is a crucial step, <br>and we're here to answer your questions. "
|
||||
columns={1}
|
||||
items={[
|
||||
{
|
||||
title: 'Do the nodes come with customer support?',
|
||||
description:
|
||||
'Absolutely, all nodes include access to our dedicated customer support team <br>to assist you with any queries and to help you set your node.',
|
||||
},
|
||||
{
|
||||
title: 'Is there a trial period for the different nodes?',
|
||||
description:
|
||||
"Unfortunately, we don't offer trial periods for the plans. <br>However, we ensure high-quality hardware that is in par or above the industry standard.",
|
||||
},
|
||||
{
|
||||
title: 'What payment methods do you accept?',
|
||||
description:
|
||||
'We currently accept major credit cards and online payment methods, ensuring a convenient and secure transaction process.',
|
||||
},
|
||||
{
|
||||
title: 'Are there any hidden fees beyond the displayed cost?',
|
||||
description:
|
||||
'No, the nodes cost covers all the features listed under each plan. All that is left is for you is to plug the node to an electric outlet and the Internet.',
|
||||
},
|
||||
{
|
||||
title: 'Can I get more information?',
|
||||
description:
|
||||
'Certainly! Check the Contact page to get more info on how to reach us.',
|
||||
},
|
||||
]}
|
||||
/>
|
||||
|
||||
<!-- CallToAction Widget *********** -->
|
||||
|
||||
<CallToAction
|
||||
title="Do you want to build your own<br> INCA Farming Nodes?"
|
||||
subtitle="Are you a do-it-yourself person and like to get things done? <br> All our work is open-source and you can build your own nodes!"
|
||||
actions={[
|
||||
{
|
||||
variant: 'primary',
|
||||
text: 'Build DIY Nodes',
|
||||
href: 'https://manual.grid.tf/documentation/farmers/3node_building/3node_building.html',
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</Layout>
|
Reference in New Issue
Block a user