34 lines
474 B
JavaScript
34 lines
474 B
JavaScript
module.exports = {
|
|
top: [
|
|
{
|
|
text: 'About',
|
|
url: '/about/'
|
|
},
|
|
{
|
|
text: 'Get started',
|
|
url: '/get-started/'
|
|
},
|
|
{
|
|
text: 'Built with',
|
|
url: '/built-with/'
|
|
},
|
|
{
|
|
text: 'Blog',
|
|
url: '/blog/'
|
|
},
|
|
{
|
|
text: 'Style guide',
|
|
url: '/styleguide/'
|
|
}
|
|
],
|
|
bottom: [
|
|
{
|
|
text: 'Imprint',
|
|
url: '/imprint/'
|
|
},
|
|
{
|
|
text: 'Privacy',
|
|
url: '/privacy/'
|
|
}
|
|
]
|
|
};
|