From dc4d5640599017721db970469ce4e0e2ce500d4f Mon Sep 17 00:00:00 2001 From: Martin Berg Alstad Date: Sun, 16 Mar 2025 21:32:11 +0100 Subject: [PATCH] :sparkles: Breadcrumbs with navigation for mobile --- src/components/header/HamburgerMenuButton.astro | 6 +++--- src/components/header/Header.astro | 17 +++++++++++------ src/components/projects/ProjectPage.astro | 5 +++-- 3 files changed, 17 insertions(+), 11 deletions(-) diff --git a/src/components/header/HamburgerMenuButton.astro b/src/components/header/HamburgerMenuButton.astro index bd7eff1..80cda60 100644 --- a/src/components/header/HamburgerMenuButton.astro +++ b/src/components/header/HamburgerMenuButton.astro @@ -2,13 +2,13 @@ import PajamasIcon from "@/components/icons/PajamasIcon.astro" interface Props { - id: string + for: string } -const { id } = Astro.props +const { for: forId } = Astro.props --- -