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
|
|
|
},
|
|
|
|
{
|
|
|
|
text: 'Nodes',
|
|
|
|
href: getPermalink('/nodes'),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: 'About',
|
|
|
|
href: getPermalink('/about'),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: 'Contact',
|
|
|
|
href: getPermalink('/contact'),
|
|
|
|
},
|
|
|
|
],
|
|
|
|
actions: [{ text: 'Get INCA Nodes', href: 'https://threefold.io', target: '_blank' }],
|
|
|
|
};
|
|
|
|
|
|
|
|
export const footerData = {
|
|
|
|
links: [
|
|
|
|
{
|
2024-06-05 20:18:51 +00:00
|
|
|
title: 'Technology',
|
2024-06-04 12:03:43 +00:00
|
|
|
links: [
|
2024-06-05 20:18:51 +00:00
|
|
|
{ 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' },
|
2024-06-04 12:03:43 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'Nodes',
|
|
|
|
links: [
|
|
|
|
{ text: 'Silver', href: '/nodes' },
|
|
|
|
{ text: 'Platinum', href: '/nodes' },
|
|
|
|
{ text: 'AI', href: '/nodes' },
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'About',
|
|
|
|
links: [
|
2024-06-05 20:18:51 +00:00
|
|
|
{ text: 'The Project', href: '/about' },
|
2024-06-04 23:12:21 +00:00
|
|
|
{ text: 'ThreeFold Grid', href: 'https://threefold.io' },
|
2024-06-04 12:03:43 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'Contact',
|
|
|
|
links: [
|
2024-06-04 12:50:06 +00:00
|
|
|
{ text: 'Let\'s Connect', href: '/contact' },
|
|
|
|
{ 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
|
|
|
`,
|
|
|
|
};
|