Created the routes index.jsx
This commit is contained in:
parent
76f870dc69
commit
8963a2ff88
24
src/common/routes/index.jsx
Normal file
24
src/common/routes/index.jsx
Normal file
@ -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"
|
||||
}
|
||||
];
|
Loading…
x
Reference in New Issue
Block a user