Integrated the Pricing page in the routes index.jsx

This commit is contained in:
Mathias Wagner 2023-07-09 03:23:43 +02:00
parent 4e984102cd
commit edf26ba42d
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -1,5 +1,6 @@
import Home from "@/pages/Home"; import Home from "@/pages/Home";
import Help from "@/pages/Help"; import Help from "@/pages/Help";
import Pricing from "@/pages/Pricing";
export default [ export default [
{ {
@ -8,14 +9,14 @@ export default [
name: "Startseite" name: "Startseite"
}, },
{ {
path: "/pricing", path: "/features",
element: <h2>Pricing</h2>, element: <h2>Features</h2>,
name: "Preise" name: "Features"
}, },
{ {
path: "/about", path: "/pricing",
element: <h2>About</h2>, element: <Pricing />,
name: "Über uns" name: "Preise"
}, },
{ {
path: "/help", path: "/help",