From 3eb1c2e283117fdb3ad572efc6296bbaa6341eb4 Mon Sep 17 00:00:00 2001 From: TheThomaas Date: Mon, 13 Nov 2023 21:34:30 +0100 Subject: [PATCH] Create navigation file --- src/_data/navigation.js | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 src/_data/navigation.js diff --git a/src/_data/navigation.js b/src/_data/navigation.js new file mode 100644 index 0000000..9776429 --- /dev/null +++ b/src/_data/navigation.js @@ -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/' + } + ] + }; \ No newline at end of file