import { getPermalink, getBlogPermalink, getAsset } from './utils/permalinks'; export const headerData = { links: [ { text: 'Landing', links: [ { text: 'Sass', href: getPermalink('/landing/saas'), }, { text: 'Startup', href: getPermalink('/landing/startup'), }, { text: 'Mobile App', href: getPermalink('/landing/mobile-app'), }, ], }, { text: 'Pages', links: [ { text: 'Features (Anchor Link)', href: getPermalink('/#features'), }, { text: 'Services', href: getPermalink('/services'), }, { text: 'Pricing', href: getPermalink('/pricing'), }, { text: 'About us', href: getPermalink('/about'), }, { text: 'Contact', href: getPermalink('/contact'), }, { text: 'Terms', href: getPermalink('/terms'), }, { text: 'Privacy policy', href: getPermalink('/privacy'), }, ], }, { text: "Blog", links: [ { text: "Blog List", href: getBlogPermalink(), }, { text: "Article", href: getPermalink("get-started-website-with-astro-tailwind-css", "post"), }, { text: "Article (with MDX)", href: getPermalink("markdown-elements-demo-post", "post"), }, { text: "Category Page", href: getPermalink("tutorials", "category"), }, { text: "Tag Page", href: getPermalink("astro", "tag"), }, ], }, { text: 'Widgets', href: '#', }, { text: 'Contact', href: '#', }, ], actions: [{ type: 'button', text: 'Download', href: 'https://github.com/onwidget/astrowind' }], }; export const footerData = { links: [ { title: 'Product', links: [ { text: 'Features', href: '#' }, { text: 'Security', href: '#' }, { text: 'Team', href: '#' }, { text: 'Enterprise', href: '#' }, { text: 'Customer stories', href: '#' }, { text: 'Pricing', href: '#' }, { text: 'Resources', href: '#' }, ], }, { title: 'Platform', links: [ { text: 'Developer API', href: '#' }, { text: 'Partners', href: '#' }, { text: 'Atom', href: '#' }, { text: 'Electron', href: '#' }, { text: 'AstroWind Desktop', href: '#' }, ], }, { title: 'Support', links: [ { text: 'Docs', href: '#' }, { text: 'Community Forum', href: '#' }, { text: 'Professional Services', href: '#' }, { text: 'Skills', href: '#' }, { text: 'Status', href: '#' }, ], }, { title: 'Company', links: [ { text: 'About', href: '#' }, { text: 'Blog', href: '#' }, { text: 'Careers', href: '#' }, { text: 'Press', href: '#' }, { text: 'Inclusion', href: '#' }, { text: 'Social Impact', href: '#' }, { text: 'Shop', href: '#' }, ], }, ], secondaryLinks: [ { text: 'Terms', href: getPermalink('/terms') }, { text: 'Privacy Policy', href: getPermalink('/privacy') }, ], socialLinks: [ { ariaLabel: 'Twitter', icon: 'tabler:brand-twitter', href: '#' }, { ariaLabel: 'Instagram', icon: 'tabler:brand-instagram', href: '#' }, { ariaLabel: 'Facebook', icon: 'tabler:brand-facebook', href: '#' }, { ariaLabel: 'RSS', icon: 'tabler:rss', href: getAsset('/rss.xml') }, { ariaLabel: 'Github', icon: 'tabler:brand-github', href: 'https://github.com/onwidget/astrowind' }, ], footNote: ` Made by onWidget ยท All rights reserved. `, };