From 4d1fc8ea02b352a76c32b06bcd20658075755846 Mon Sep 17 00:00:00 2001 From: Leo Wilkin Date: Thu, 29 Aug 2024 20:28:09 +0100 Subject: [PATCH] Update header to match currently available websites in the header --- src/layouts/components/Header.astro | 25 ++++++++++++++++--------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/src/layouts/components/Header.astro b/src/layouts/components/Header.astro index 99c1561..3ed1549 100644 --- a/src/layouts/components/Header.astro +++ b/src/layouts/components/Header.astro @@ -4,25 +4,32 @@ import { Image } from 'astro:assets'; import Logo from '@src/assets/img/icon.png'; const menu = [ - { - link: '/faq/', - label: 'FAQ' - }, - { - link: '/team/', - label: 'Team' - }, { link: 'https://hcb.hackclub.com/zenithhacks', label: 'HCB' }, { link: 'https://github.com/zenith-hacks', - label: 'Github' + label: 'GitHub' + }, + { + link: 'https://hackclub.slack.com/archives/C07HC6711PX', + label: 'Slack' }, ]; --- + +