Create navigation file

This commit is contained in:
TheThomaas 2023-11-13 21:34:30 +01:00
parent 6814cdca3d
commit 3eb1c2e283

38
src/_data/navigation.js Normal file
View file

@ -0,0 +1,38 @@
module.exports = {
top: [
{
text: 'Home',
url: '/'
},
{
text: 'About',
url: '/about/'
},
{
text: 'Get started',
url: '/get-started/'
},
{
text: 'Built with',
url: '/built-with/'
},
{
text: 'Example',
url: '/tags/example/'
},
{
text: 'Blog',
url: '/blog/'
}
],
bottom: [
{
text: 'Imprint',
url: '/imprint/'
},
{
text: 'Privacy',
url: '/privacy/'
}
]
};