import { getPermalink, getBlogPermalink, getAsset } from './utils/permalinks'; export const headerData = { links: [ { text: 'Services', href: getPermalink('/services'), }, { text: 'Pricing', href: getPermalink('/pricing'), }, { text: 'About', href: getPermalink('/about'), }, { text: 'Contact', href: getPermalink('/contact'), }, ], // ADD BLOG IN FUTURE //actions: [{ text: 'Blog', href: 'https://cyberpath.com.au/blog', target: '_blank' }], }; export const footerData = { links: [ { title: 'Company', links: [ { text: 'Services', href: getPermalink('/services') }, { text: 'Availability', href: getPermalink('/contact') }, { text: 'Customer stories', href: getPermalink('/services#testimonials') }, { text: 'Pricing', href: getPermalink('/pricing') }, ], }, { title: 'Information', links: [ { text: 'About', href: getPermalink('/about') }, { text: 'Contact', href: getPermalink('/contact') }, { text: 'Customer Data', href: getPermalink('/privacy') }, { text: 'Insurance', href: getPermalink('/insurance') }, ], }, ], secondaryLinks: [ { text: 'Terms', href: getPermalink('/terms') }, { text: 'Privacy Policy', href: getPermalink('/privacy') }, ], socialLinks: [ { ariaLabel: 'LinkedIn', icon: 'tabler:brand-linkedin', href: 'https://www.linkedin.com/in/caleb-macmile-8698432a0/' }, { ariaLabel: 'RSS', icon: 'tabler:rss', href: getAsset('/rss.xml') }, ], footNote: ` `, };