File: /home/bigfreeodds/www/wp-content/src/routes/index.tsx
import { createFileRoute } from "@tanstack/react-router";
import { useEffect } from "react";
export const Route = createFileRoute("/")({
component: Index,
});
function Index() {
useEffect(() => {
window.location.replace("/scores/index.html");
}, []);
return (
<div style={{ minHeight: "100vh", background: "#05060a", color: "#a8ffb0", display: "flex", alignItems: "center", justifyContent: "center", fontFamily: "system-ui" }}>
Loading Live Scores…
</div>
);
}