www_projectinca_archive/src/navigation.js

63 lines
1.8 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
},
{
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-08 14:11:17 +00:00
actions: [{ text: 'Get INCA Nodes', href: 'https://csnkyhwp8b4.typeform.com/to/SnfEE9pj', 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: '/' },
2024-06-08 13:59:40 +00:00
{ 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-08 14:19:26 +00:00
{ text: 'ThreeFold', href: 'https://threefold.io/' },
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/' },
{ 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
`,
};