import { getPermalink, getBlogPermalink, getAsset } from './utils/permalinks'; export const headerData = { links: [ { text: 'Technology', href: getPermalink('/technology'), }, { text: 'Farming', href: getPermalink('/farming'), }, { 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', links: [ { text: 'Zero-OS', href: 'technology#zeroos' }, { text: 'Mycelium Network', href: 'technology#mycelium' }, { text: 'Quantum-Safe Storage', href: 'technology#qsfs' }, { text: 'TFChain', href: 'technology#tfchain' }, ], }, { title: 'Nodes', links: [ { text: 'Silver', href: '/farming#incanodes' }, { text: 'Platinum', href: '/farming#incanodes' }, { text: 'AI', href: '/farming#incanodes' }, ], }, { title: 'About', 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: 'ThreeFold Chat', href: 'https://t.me/threefold' }, ], }, ], 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: ` A project by ThreeFold ยท All rights reserved. `, };