diff --git a/frontend/src/components/logistics/materialHelper/materialHelperPage.tsx b/frontend/src/components/logistics/materialHelper/materialHelperPage.tsx
new file mode 100644
index 0000000..b837002
--- /dev/null
+++ b/frontend/src/components/logistics/materialHelper/materialHelperPage.tsx
@@ -0,0 +1,3 @@
+export default function MaterialHelperPage() {
+ return
materialHelperPage
;
+}
diff --git a/frontend/src/routes/(logistics)/materialHelper/consumption/index.tsx b/frontend/src/routes/(logistics)/materialHelper/consumption/index.tsx
new file mode 100644
index 0000000..34766a4
--- /dev/null
+++ b/frontend/src/routes/(logistics)/materialHelper/consumption/index.tsx
@@ -0,0 +1,11 @@
+import { createFileRoute } from '@tanstack/react-router'
+
+export const Route = createFileRoute(
+ '/(logistics)/materialHelper/consumption/',
+)({
+ component: RouteComponent,
+})
+
+function RouteComponent() {
+ return Hello "/(logistics)/materialHelper/consumption/"!
+}
diff --git a/frontend/src/routes/(logistics)/materialHelper/index.tsx b/frontend/src/routes/(logistics)/materialHelper/index.tsx
new file mode 100644
index 0000000..e48b301
--- /dev/null
+++ b/frontend/src/routes/(logistics)/materialHelper/index.tsx
@@ -0,0 +1,14 @@
+import MaterialHelperPage from "@/components/logistics/materialHelper/materialHelperPage";
+import {createFileRoute} from "@tanstack/react-router";
+
+export const Route = createFileRoute("/(logistics)/materialHelper/")({
+ component: RouteComponent,
+});
+
+function RouteComponent() {
+ return (
+
+
+
+ );
+}
diff --git a/frontend/src/routes/(logistics)/materialHelper/siloLink/index.tsx b/frontend/src/routes/(logistics)/materialHelper/siloLink/index.tsx
new file mode 100644
index 0000000..96b1a8a
--- /dev/null
+++ b/frontend/src/routes/(logistics)/materialHelper/siloLink/index.tsx
@@ -0,0 +1,9 @@
+import { createFileRoute } from '@tanstack/react-router'
+
+export const Route = createFileRoute('/(logistics)/materialHelper/siloLink/')({
+ component: RouteComponent,
+})
+
+function RouteComponent() {
+ return Hello "/(logistics)/materialHelper/siloLink/"!
+}