From 172fd6f26795cc0064bd97f8f544b3e90a967402 Mon Sep 17 00:00:00 2001 From: Heather Yu <35639529+hetd54@users.noreply.github.com> Date: Wed, 6 Mar 2024 14:27:17 -0500 Subject: [PATCH] style: hamburger menu --- src/components/Header.astro | 59 ++++++++++++++++++++++++++++++------- 1 file changed, 49 insertions(+), 10 deletions(-) diff --git a/src/components/Header.astro b/src/components/Header.astro index 8c8f239..f8a311c 100644 --- a/src/components/Header.astro +++ b/src/components/Header.astro @@ -1,12 +1,37 @@ --- import HeaderLink from "./HeaderLink.astro" import { SITE_TITLE, LINKS } from "../consts" + +const { isHidden = true } = Astro.props --- + {SITE_TITLE} - + { LINKS.map((data) => {data.toUpperCase()}) } - - - + + + + + { + LINKS.map((data) => + {data.toUpperCase()}) + } + + + \ No newline at end of file