From 17221b57f9345575add173be49efb4587fc3c828 Mon Sep 17 00:00:00 2001 From: Dawid Rycerz Date: Thu, 3 Jul 2025 20:28:45 +0300 Subject: Add privacy policy --- src/components/layout/Header.astro | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) (limited to 'src/components') diff --git a/src/components/layout/Header.astro b/src/components/layout/Header.astro index 0b03986..3eff4e0 100644 --- a/src/components/layout/Header.astro +++ b/src/components/layout/Header.astro @@ -126,16 +126,18 @@ import { siteConfig } from "../../site.config"; id="navigation-menu" > { - menuLinks.map((link) => ( - - {link.title} - - )) + menuLinks + .filter((link) => link.path !== "/privacy-policy/") + .map((link) => ( + + {link.title} + + )) } -- cgit v1.2.3