Reviewed-on: #13 Co-authored-by: Clement <c.boesmier@aptatio.com> Co-committed-by: Clement <c.boesmier@aptatio.com>
167 lines
2.9 KiB
JavaScript
167 lines
2.9 KiB
JavaScript
import { getPermalink, getBlogPermalink } 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: 'Connexion',
|
|
// href: '',
|
|
// target: '_blank',
|
|
// },
|
|
// ],
|
|
}
|
|
|
|
export const footerData = {
|
|
links: [
|
|
{
|
|
title: 'Product',
|
|
links: [
|
|
{ text: 'Features', href: '#' },
|
|
{ text: 'Security', href: '#' },
|
|
],
|
|
},
|
|
{
|
|
title: 'Platform',
|
|
links: [
|
|
{ text: 'Developer API', href: '#' },
|
|
{ text: 'Partners', href: '#' },
|
|
],
|
|
},
|
|
{
|
|
title: 'Support',
|
|
links: [
|
|
{ text: 'Docs', href: '#' },
|
|
{ text: 'Community Forum', href: '#' },
|
|
],
|
|
},
|
|
{
|
|
title: 'Company',
|
|
links: [
|
|
{ text: 'About', href: '#' },
|
|
{ text: 'Blog', href: '#' },
|
|
],
|
|
},
|
|
],
|
|
secondaryLinks: [
|
|
{ text: 'Terms', href: getPermalink('/terms') },
|
|
{ text: 'Privacy Policy', href: getPermalink('/privacy') },
|
|
],
|
|
socialLinks:[]
|
|
}
|