www_projectinca_archive/src/pages/nodes.astro

242 lines
6.9 KiB
Plaintext

---
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';
const metadata = {
title: 'Nodes',
};
---
<Layout metadata={metadata}>
<!-- HeroText Widget ******************* -->
<HeroText
tagline="Nodes"
title="Building the Unbreakable Internet<br> One Node at a Time"
subtitle="Choose the perfect node for your goals."
/>
<!-- Pricing Widget ******************* -->
<Prices
title="Internet Capacity Nodes"
subtitle="The Unbreakable Internet"
prices={[
{
title: 'silver',
subtitle: 'Optimal choice for end user utilization',
price: 499,
period: 'per node',
items: [
{
description: 'Suited for Content Delivery + Name',
},
{
description: '32 GB of Memory',
},
{
description: '2,000 GB of SSD',
},
{
description: '8 Logical CPU Cores',
},
],
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: 'Suited for Hero AI assistant workloads',
},
{
description: '64 GB of Memory',
},
{
description: '2,000 GB of SSD + 10,000 GB of HDD',
},
{
description: '16 Logical CPU Cores',
},
],
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: 'Suited for state-of-the-art AI with ease',
},
{
description: '64 GB of Memory',
},
{
description: '4,000 GB of SSD + 10,000 GB of HDD',
},
{
description: 'RTX 4900 GPU',
},
],
callToAction: {
target: '_blank',
text: 'Get INCA Nodes',
href: 'https://threefold.io',
},
},
]}
/>
<!-- Features3 Widget ************** -->
<Features3
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
title="Nodes 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="Ready to Expand the Internet Capacity? "
subtitle="Join our community of cloud service providers <br>who have transformed the Internet landscape."
actions={[
{
variant: 'primary',
text: 'Get INCA Nodes',
href: 'https://threefold.io',
},
]}
/>
</Layout>