From fd9bd110b2266fb5e214f64df07c90f6459ac32b Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Fri, 4 Aug 2023 12:06:07 +0200 Subject: [PATCH] Imported the Privacy & Imprint pages into the routes index.jsx --- client/src/common/routes/index.jsx | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/client/src/common/routes/index.jsx b/client/src/common/routes/index.jsx index f26d87c..edf8208 100644 --- a/client/src/common/routes/index.jsx +++ b/client/src/common/routes/index.jsx @@ -1,9 +1,9 @@ import { faBox, - faFolder, + faFolder, faLocationPin, faLock, faQrcode, - faQuestionCircle, + faQuestionCircle, faShield, faTerminal, faUnlock } from "@fortawesome/free-solid-svg-icons"; @@ -15,6 +15,8 @@ import InstallSoftware from "@/pages/tools/linux/InstallSoftware"; import RemoteSSH from "@/pages/tools/linux/RemoteSSH"; import RemoteSFTP from "@/pages/tools/linux/RemoteSFTP"; import {createRef} from "react"; +import Imprint from "@/pages/legal/Imprint"; +import Privacy from "@/pages/legal/Privacy"; export const routes = { Allgemein: [ @@ -71,6 +73,20 @@ export const routes = { component: , ref: createRef() } + ], + Rechtliches: [ + { + path: '/legal/imprint', + name: 'Impressum', + component: , + icon: faLocationPin, + }, + { + path: '/legal/privacy', + name: 'Datenschutz', + component: , + icon: faShield, + } ] }