From 721813dc299aeef651e3f46487b94fc1c59019e9 Mon Sep 17 00:00:00 2001 From: Blake Matthes Date: Tue, 28 Oct 2025 22:21:01 -0500 Subject: [PATCH] feat(dashboard): added notification on use of old version --- frontend/src/routes/_app/index.tsx | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/frontend/src/routes/_app/index.tsx b/frontend/src/routes/_app/index.tsx index 1bdc675..33750a1 100644 --- a/frontend/src/routes/_app/index.tsx +++ b/frontend/src/routes/_app/index.tsx @@ -1,5 +1,4 @@ -import { createFileRoute } from "@tanstack/react-router"; - +import { createFileRoute, Link } from "@tanstack/react-router"; export const Route = createFileRoute("/_app/")({ component: Index, @@ -9,8 +8,17 @@ function Index() { return (
- +
+

+ As we transtion to the new version and need to utilize both site + click{" "} + + Old version + {" "} + to get to everything you are familiar with +

+
- ) + ); }