From d8fedfb37922435e7e6224d6055b1377d1355d28 Mon Sep 17 00:00:00 2001 From: enricobuehler Date: Mon, 26 Jun 2023 00:33:51 +0200 Subject: [PATCH] removed privacy link from footer since theres no data processing --- web/src/components/Layout/Footer.astro | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/web/src/components/Layout/Footer.astro b/web/src/components/Layout/Footer.astro index 5974798..d25bddd 100644 --- a/web/src/components/Layout/Footer.astro +++ b/web/src/components/Layout/Footer.astro @@ -31,13 +31,7 @@ const tree: Array = [ }, { title: "Legal", - items: [ - { path: "/legal/imprint", label: "Imprint" }, - { - path: "/legal/privacy-policy", - label: "Privacy Policy", - }, - ], + items: [{ path: "/legal/imprint", label: "Imprint" }], }, ]; ---