From aae9813f9c93a3b768bca2a405d513d684065234 Mon Sep 17 00:00:00 2001 From: Blake Matthes Date: Thu, 6 Mar 2025 19:35:01 -0600 Subject: [PATCH] feat(frontend): added the start to the material help center --- .../materialHelper/materialHelperPage.tsx | 3 +++ .../materialHelper/consumption/index.tsx | 11 +++++++++++ .../routes/(logistics)/materialHelper/index.tsx | 14 ++++++++++++++ .../(logistics)/materialHelper/siloLink/index.tsx | 9 +++++++++ 4 files changed, 37 insertions(+) create mode 100644 frontend/src/components/logistics/materialHelper/materialHelperPage.tsx create mode 100644 frontend/src/routes/(logistics)/materialHelper/consumption/index.tsx create mode 100644 frontend/src/routes/(logistics)/materialHelper/index.tsx create mode 100644 frontend/src/routes/(logistics)/materialHelper/siloLink/index.tsx 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/"!
+}