diff --git a/src/components/widgets/Hero.astro b/src/components/widgets/Hero.astro
index e8ce3ee..15f3708 100644
--- a/src/components/widgets/Hero.astro
+++ b/src/components/widgets/Hero.astro
@@ -6,6 +6,7 @@ import type { CallToAction } from '~/types';
export interface Props {
id?: string;
title?: string;
+ title2?: string;
subtitle?: string;
tagline?: string;
content?: string;
@@ -16,6 +17,7 @@ export interface Props {
const {
id,
title = await Astro.slots.render('title'),
+ title2 = await Astro.slots.render('title2'),
subtitle = await Astro.slots.render('subtitle'),
tagline,
content = await Astro.slots.render('content'),
@@ -46,6 +48,14 @@ const {
/>
)
}
+ {
+ title2 && (
+
{subtitle &&
}
{
diff --git a/src/navigation.js b/src/navigation.js
index b2dc603..354c779 100644
--- a/src/navigation.js
+++ b/src/navigation.js
@@ -8,7 +8,7 @@ export const headerData = {
},
{
text: 'Farming',
- href: getPermalink('/nodes'),
+ href: getPermalink('/farming'),
},
{
text: 'Ecosystem',
@@ -29,35 +29,28 @@ export const headerData = {
export const footerData = {
links: [
{
- title: 'Technology',
+ title: 'Project Overview',
links: [
- { text: 'Zero-OS', href: 'technology#zeroos' },
- { text: 'Mycelium Network', href: 'technology#mycelium' },
- { text: 'Quantum Safe File Storage', href: 'technology#qsfs' },
- { text: 'TFChain', href: 'technology#tfchain' },
+ { text: 'Home', href: '/' },
+ { text: 'Technology', href: 'technology' },
+ { text: 'About', href: 'about' },
],
},
{
- title: 'Nodes',
+ title: 'Join the Cloud',
links: [
- { text: 'Silver', href: '/nodes' },
- { text: 'Platinum', href: '/nodes' },
- { text: 'AI', href: '/nodes' },
+ { text: 'Farming', href: 'farming' },
+ { text: 'Ecosystem', href: 'ecosystem' },
+ { text: 'DIY Nodes', href: 'https://manual.grid.tf/documentation/farmers/3node_building/3node_building.html' },
+
],
},
{
- title: 'About',
+ title: 'Communication',
links: [
- { text: 'The Project', href: '/about' },
- { text: 'ThreeFold', href: 'https://threefold.io' },
- ],
- },
- {
- title: 'Contact',
- links: [
- { text: 'Let\'s Connect', href: '/contact' },
- { text: 'Reach Support', href: 'https://threefoldfaq.crisp.help/en/' },
+ { text: 'Contact Us', href: 'mailto:info@threefold.io' },
{ text: 'ThreeFold Chat', href: 'https://t.me/threefold' },
+ { text: 'ThreeFold Support', href: 'https://threefoldfaq.crisp.help/en/' },
],
},
],
diff --git a/src/pages/about.astro b/src/pages/about.astro
index c10c50b..74c4d83 100644
--- a/src/pages/about.astro
+++ b/src/pages/about.astro
@@ -17,6 +17,7 @@ const metadata = {
- Project INCA
ecosystem
+ Project INCA
Ecosystem
- Project INCA is an open-source DePIN cloud that allows
anyone anywhere to become a cloud service provider.
Project INCA is proud of its many partnerships
providing a thriving ecosystem of like-minded individuals
and innovative products and services
- INCA, DePIN Cloud
- Earn INCA rewards by providing INternet CApacity to the world!
diff --git a/src/pages/nodes.astro b/src/pages/farming.astro
similarity index 93%
rename from src/pages/nodes.astro
rename to src/pages/farming.astro
index c795e18..83287b7 100644
--- a/src/pages/nodes.astro
+++ b/src/pages/farming.astro
@@ -11,7 +11,7 @@ import InternetCapacity from './internetcapacity.astro';
import NodeSteps from './steps_node_buy.astro'
const metadata = {
- title: 'Nodes',
+ title: 'Farming',
};
---
@@ -28,11 +28,11 @@ const metadata = {
target: '_blank',
icon: 'tabler:brand-minecraft',
},
- { text: 'Learn more', href: '#features' },
+ { text: 'Learn more', href: '#nodesspecs' },
]}
>
- become an
+ Become an
Provider
@@ -52,6 +52,7 @@ const metadata = {
@@ -72,7 +72,7 @@ const metadata = {
diff --git a/src/pages/purpose.astro b/src/pages/purpose.astro
index d89d831..51294e4 100644
--- a/src/pages/purpose.astro
+++ b/src/pages/purpose.astro
@@ -3,7 +3,7 @@ import Features from '~/components/widgets/Features.astro';
---