ci(frontend): added in big button for docs lol

This commit is contained in:
2025-09-08 16:09:08 -05:00
parent fc7ecb6ab6
commit 160444d2f4
24 changed files with 2743 additions and 310 deletions

View File

@@ -0,0 +1,11 @@
import { createRootRoute, Outlet } from "@tanstack/react-router";
import { TanStackRouterDevtools } from "@tanstack/react-router-devtools";
const RootLayout = () => (
<>
<Outlet />
<TanStackRouterDevtools />
</>
);
export const Route = createRootRoute({ component: RootLayout });

View File

@@ -0,0 +1,18 @@
import { createFileRoute } from "@tanstack/react-router";
import { Button } from "../components/ui/button";
export const Route = createFileRoute("/")({
component: Index,
});
function Index() {
return (
<div className="h-screen flex items-center justify-center">
<Button className="h-96 w-96">
<a href="/lst/d" target="_blank" className="text-4xl">
LST-DOCS
</a>
</Button>
</div>
);
}