Integrated the Tutorials page into the main.jsx

This commit is contained in:
Mathias Wagner
2024-03-09 20:05:13 +01:00
parent 8761fe10d2
commit c704034b0c
+2 -1
View File
@@ -9,6 +9,7 @@ import Home from "@/pages/Home";
import Imprint from "@/pages/Imprint";
import Privacy from "@/pages/Privacy";
import Install from "@/pages/Install";
import Tutorials from "@/pages/Tutorials";
const router = createBrowserRouter([
{
@@ -18,7 +19,7 @@ const router = createBrowserRouter([
children: [
{path: "/", element: <Home />},
{path: "/install", element: <Install />},
{path: "/tutorials", element: <h2>Tutorials</h2>},
{path: "/tutorials", element: <Tutorials />},
{path: "/imprint", element: <Imprint />},
{path: "/privacy", element: <Privacy />},
]