diff options
| author | Dawid Rycerz <dawid@rycerz.xyz> | 2025-07-21 21:56:55 +0300 |
|---|---|---|
| committer | Dawid Rycerz <dawid@rycerz.xyz> | 2025-07-21 21:56:55 +0300 |
| commit | c735556726e75428550a3d28a2cf58e2c8490b7d (patch) | |
| tree | fd0ae29d1636b825abeedff6b99d3376bb383135 /src/navigation.ts | |
Initial template
Diffstat (limited to 'src/navigation.ts')
| -rw-r--r-- | src/navigation.ts | 183 |
1 files changed, 183 insertions, 0 deletions
diff --git a/src/navigation.ts b/src/navigation.ts new file mode 100644 index 0000000..d5cd65b --- /dev/null +++ b/src/navigation.ts @@ -0,0 +1,183 @@ +import { getPermalink, getBlogPermalink, getAsset } from './utils/permalinks'; + +export const headerData = { + links: [ + { + text: 'Homes', + links: [ + { + text: 'SaaS', + href: getPermalink('/homes/saas'), + }, + { + text: 'Startup', + href: getPermalink('/homes/startup'), + }, + { + text: 'Mobile App', + href: getPermalink('/homes/mobile-app'), + }, + { + text: 'Personal', + href: getPermalink('/homes/personal'), + }, + ], + }, + { + 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: 'Landing', + links: [ + { + text: 'Lead Generation', + href: getPermalink('/landing/lead-generation'), + }, + { + text: 'Long-form Sales', + href: getPermalink('/landing/sales'), + }, + { + text: 'Click-Through', + href: getPermalink('/landing/click-through'), + }, + { + text: 'Product Details (or Services)', + href: getPermalink('/landing/product'), + }, + { + text: 'Coming Soon or Pre-Launch', + href: getPermalink('/landing/pre-launch'), + }, + { + text: 'Subscription', + href: getPermalink('/landing/subscription'), + }, + ], + }, + { + 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: '#', + }, + ], + actions: [{ text: 'Download', href: 'https://github.com/onwidget/astrowind', target: '_blank' }], +}; + +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: 'X', icon: 'tabler:brand-x', 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: ` + <img class="w-5 h-5 md:w-6 md:h-6 md:-mt-0.5 bg-cover mr-1.5 rtl:mr-0 rtl:ml-1.5 float-left rtl:float-right rounded-sm" src="https://onwidget.com/favicon/favicon-32x32.png" alt="onWidget logo" loading="lazy"></img> + Made by <a class="text-blue-600 underline dark:text-muted" href="https://onwidget.com/"> onWidget</a> ยท All rights reserved. + `, +}; |
