Initial commit

Created from https://vercel.com/new
This commit is contained in:
yzned
2025-07-18 10:26:56 +00:00
commit 5bb273d4cc
23 changed files with 7374 additions and 0 deletions

9
src/routes/index.tsx Normal file
View File

@@ -0,0 +1,9 @@
import { createFileRoute } from "@tanstack/react-router";
export const Route = createFileRoute("/")({
component: App,
});
function App() {
return <div className=""> </div>;
}