Integrated the Features page into the routes index.jsx

This commit is contained in:
2023-07-09 17:55:37 +02:00
parent 9505370e96
commit f37c992c23

View File

@@ -1,6 +1,7 @@
import Home from "@/pages/Home";
import Help from "@/pages/Help";
import Pricing from "@/pages/Pricing";
import Features from "@/pages/Features";
export default [
{
@@ -10,7 +11,7 @@ export default [
},
{
path: "/features",
element: <h2>Features</h2>,
element: <Features />,
name: "Features"
},
{