2024-06-04 12:03:43 +00:00
|
|
|
import { getPermalink, getBlogPermalink, getAsset } from './utils/permalinks';
|
|
|
|
|
|
|
|
export const headerData = {
|
|
|
|
links: [
|
|
|
|
{
|
2024-06-05 20:18:51 +00:00
|
|
|
text: 'Technology',
|
|
|
|
href: getPermalink('/technology'),
|
2024-06-04 12:03:43 +00:00
|
|
|
},
|
|
|
|
{
|
2024-06-06 19:47:48 +00:00
|
|
|
text: 'Farming',
|
|
|
|
href: getPermalink('/farming'),
|
2024-06-04 12:03:43 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
text: 'About',
|
|
|
|
href: getPermalink('/about'),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: 'Contact',
|
|
|
|
href: getPermalink('/contact'),
|
|
|
|
},
|
|
|
|
],
|
2024-06-06 19:07:00 +00:00
|
|
|
actions: [{ text: 'Get INCA Nodes', href: 'https://threefold.io', target: '_blank' }],
|
2024-06-04 12:03:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export const footerData = {
|
|
|
|
links: [
|
|
|
|
{
|
2024-06-07 12:18:05 +00:00
|
|
|
title: 'Project Overview',
|
2024-06-04 12:03:43 +00:00
|
|
|
links: [
|
2024-06-07 12:18:05 +00:00
|
|
|
{ text: 'Home', href: '/' },
|
|
|
|
{ text: 'Technology', href: 'technology' },
|
|
|
|
{ text: 'About', href: 'about' },
|
2024-06-04 12:03:43 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
2024-06-07 12:18:05 +00:00
|
|
|
title: 'Join the Cloud',
|
2024-06-04 12:03:43 +00:00
|
|
|
links: [
|
2024-06-07 12:18:05 +00:00
|
|
|
{ text: 'Farming', href: '/farming' },
|
|
|
|
{ text: 'DIY Nodes', href: 'https://manual.grid.tf/documentation/farmers/3node_building/3node_building.html' },
|
2024-06-04 12:03:43 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
2024-06-07 12:18:05 +00:00
|
|
|
title: 'Communication',
|
2024-06-04 12:03:43 +00:00
|
|
|
links: [
|
2024-06-07 12:18:05 +00:00
|
|
|
{ text: 'Contact Us', href: '/contact' },
|
2024-06-04 12:50:06 +00:00
|
|
|
{ text: 'Reach Support', href: 'https://threefoldfaq.crisp.help/en/' },
|
2024-06-05 20:18:51 +00:00
|
|
|
{ text: 'ThreeFold Chat', href: 'https://t.me/threefold' },
|
2024-06-04 12:03:43 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
secondaryLinks: [
|
|
|
|
{ text: 'Terms', href: getPermalink('/terms') },
|
|
|
|
{ text: 'Privacy Policy', href: getPermalink('/privacy') },
|
|
|
|
],
|
|
|
|
socialLinks: [
|
|
|
|
{ ariaLabel: 'X', icon: 'tabler:brand-x', href: 'https://twitter.com/threefold_io' },
|
|
|
|
{ ariaLabel: 'Github', icon: 'tabler:brand-github', href: 'https://github.com/threefoldtech' },
|
|
|
|
],
|
|
|
|
footNote: `
|
2024-06-04 12:50:06 +00:00
|
|
|
A project by <a class="text-blue-600 underline dark:text-muted" href="https://threefold.io"> ThreeFold</a> · All rights reserved.
|
2024-06-04 12:03:43 +00:00
|
|
|
`,
|
|
|
|
};
|