From 8963a2ff88b4a6608cfa4226cead0340404a2a74 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Fri, 7 Jul 2023 01:03:56 +0200 Subject: [PATCH] Created the routes index.jsx --- src/common/routes/index.jsx | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/common/routes/index.jsx diff --git a/src/common/routes/index.jsx b/src/common/routes/index.jsx new file mode 100644 index 0000000..ea2c002 --- /dev/null +++ b/src/common/routes/index.jsx @@ -0,0 +1,24 @@ +import Home from "@/pages/Home"; + +export default [ + { + path: "/", + element: , + name: "Startseite" + }, + { + path: "/pricing", + element:

Pricing

, + name: "Preise" + }, + { + path: "/about", + element:

About

, + name: "Über uns" + }, + { + path: "/help", + element:

Help

, + name: "Hilfe" + } +]; \ No newline at end of file