www_projectinca_archive/src/navigation.js

71 lines
2.0 KiB
JavaScript
Raw Normal View History

2024-06-04 12:03:43 +00:00
import { getPermalink, getBlogPermalink, getAsset } from './utils/permalinks';
export const headerData = {
links: [
{
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: [
{
title: 'Technology',
2024-06-04 12:03:43 +00:00
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' },
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: [
{ text: 'The Project', href: '/about' },
2024-06-06 01:17:34 +00:00
{ text: 'ThreeFold', 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/' },
{ 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
`,
};