initial commit

This commit is contained in:
Simeon Radivoev 2026-01-23 04:56:39 +02:00
commit 3e90445fab
Signed by: simeonradivoev
GPG key ID: 7611A451D2A5D37A
20 changed files with 961 additions and 0 deletions

View file

@ -0,0 +1,16 @@
import { Link, Outlet, createRootRoute } from "@tanstack/react-router";
import { TanStackRouterDevtools } from "@tanstack/react-router-devtools";
import { Gamepad2, Library, Settings, Store } from "lucide-react";
export const Route = createRootRoute({
component: RootComponent,
});
function RootComponent() {
return (
<div className="w-screen h-screen overflow-hidden">
<Outlet />
<TanStackRouterDevtools position="bottom-right" />
</div>
);
}