setup correct routes, add analytics and pgn viewer deps

This commit is contained in:
2026-05-29 20:45:26 +02:00
parent 7f8cc180c3
commit c14909d116
6 changed files with 1007 additions and 57 deletions
+9
View File
@@ -0,0 +1,9 @@
import { createFileRoute } from '@tanstack/react-router'
export const Route = createFileRoute('/contact')({
component: RouteComponent,
})
function RouteComponent() {
return <div>Hello "/contact"!</div>
}