diff --git a/client/src/common/routes/index.jsx b/client/src/common/routes/index.jsx index edf8208..fbe41db 100644 --- a/client/src/common/routes/index.jsx +++ b/client/src/common/routes/index.jsx @@ -1,4 +1,5 @@ import { + faArrowUp19, faBox, faFolder, faLocationPin, faLock, @@ -17,6 +18,7 @@ import RemoteSFTP from "@/pages/tools/linux/RemoteSFTP"; import {createRef} from "react"; import Imprint from "@/pages/legal/Imprint"; import Privacy from "@/pages/legal/Privacy"; +import CharCounter from "@/pages/tools/text/CharCounter"; export const routes = { Allgemein: [ @@ -51,6 +53,14 @@ export const routes = { ref: createRef() } ], + Text: [ + { + path: '/text/char-counter', + name: 'Zeichenzähler', + icon: faArrowUp19, + component: + } + ], Linux: [ { path: '/linux/ssh',