Created the routes index.jsx

This commit is contained in:
2023-07-07 01:03:56 +02:00
parent 76f870dc69
commit 8963a2ff88

@ -0,0 +1,24 @@
import Home from "@/pages/Home";
export default [
{
path: "/",
element: <Home />,
name: "Startseite"
},
{
path: "/pricing",
element: <h2>Pricing</h2>,
name: "Preise"
},
{
path: "/about",
element: <h2>About</h2>,
name: "Über uns"
},
{
path: "/help",
element: <h2>Help</h2>,
name: "Hilfe"
}
];