From aa1b5e100e1da661b489078f28a13bd23ad51014 Mon Sep 17 00:00:00 2001 From: tree Date: Sun, 17 Mar 2024 05:45:00 +0100 Subject: [PATCH] move research & events to top --- astro.config.mjs | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/astro.config.mjs b/astro.config.mjs index ec4accb4..e38de0a7 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -37,19 +37,19 @@ export default defineConfig({ ], }, { - label: 'Projects', + label: '🔬 Research', + collapsed: true, + autogenerate: { directory: 'research' }, + }, + { + label: '📅 Events', + collapsed: true, + autogenerate: { directory: 'events' }, + }, + { + label: 'Other projects', items: [ // Each item here is one entry in the navigation menu. - { - label: '🔬 Research', - collapsed: true, - autogenerate: { directory: 'research' }, - }, - { - label: '📅 Events', - collapsed: true, - autogenerate: { directory: 'events' }, - }, { label: '👁️ Privacy Explorer', link: '/projects/privacy-explorer' }, { label: '📰 Week in the Privacy', link: '/news/week-in-the-privacy' }, { label: '🏆 Privacy Tech Awards', link: '/projects/privacy-tech-awards' },