Reorganice navigation and add first landing pages

This commit is contained in:
prototypa
2023-08-14 09:25:16 -04:00
parent 1eeee6ce2b
commit 85fa2050f8
11 changed files with 289 additions and 84 deletions

View File

@ -3,19 +3,27 @@ import { getPermalink, getBlogPermalink, getAsset } from './utils/permalinks';
export const headerData = {
links: [
{
text: 'Landing',
text: 'Homes',
links: [
{
text: 'Sass',
href: getPermalink('/landing/saas'),
href: getPermalink('/homes/saas'),
},
{
text: 'Startup',
href: getPermalink('/landing/startup'),
href: getPermalink('/homes/startup'),
},
{
text: 'Mobile App',
href: getPermalink('/landing/mobile-app'),
text: 'App Download',
href: getPermalink('/homes/mobile-app'),
},
{
text: 'Personal Portfolio',
href: "#",
},
{
text: 'Event Registration',
href: "#",
},
],
},
@ -52,6 +60,35 @@ export const headerData = {
},
],
},
{
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: 'Squeeze',
href: getPermalink('/landing/squeeze'),
},
{
text: 'Product Details (or Services)',
href: getPermalink('/landing/product'),
},
{
text: 'Coming Soon or Pre-Launch',
href: getPermalink('/landing/pre-launch'),
},
],
},
{
text: 'Blog',
links: [
@ -81,10 +118,6 @@ export const headerData = {
text: 'Widgets',
href: '#',
},
{
text: 'Contact',
href: '#',
},
],
actions: [{ type: 'button', text: 'Download', href: 'https://github.com/onwidget/astrowind' }],
};