feat(dashboard): added notification on use of old version

This commit is contained in:
2025-10-28 22:21:01 -05:00
parent 0ddf67d815
commit 721813dc29

View File

@@ -1,5 +1,4 @@
import { createFileRoute } from "@tanstack/react-router"; import { createFileRoute, Link } from "@tanstack/react-router";
export const Route = createFileRoute("/_app/")({ export const Route = createFileRoute("/_app/")({
component: Index, component: Index,
@@ -9,8 +8,17 @@ function Index() {
return ( return (
<div> <div>
<div className="h-screen flex flex-col items-center justify-center"> <div className="h-screen flex flex-col items-center justify-center">
<div className="m-2">
<p>
As we transtion to the new version and need to utilize both site
click{" "}
<Link to={"/old"} className="underline">
Old version
</Link>{" "}
to get to everything you are familiar with
</p>
</div>
</div> </div>
</div> </div>
) );
} }