mirror of
https://github.com/TheRealOwenRees/chess-scribe-website.git
synced 2026-07-23 01:46:57 +00:00
16 lines
343 B
TypeScript
16 lines
343 B
TypeScript
import { createFileRoute } from "@tanstack/react-router";
|
|
import { HOST_URL } from "#/config.ts";
|
|
import Home from "#/pages";
|
|
|
|
export const Route = createFileRoute("/")({
|
|
head: () => ({
|
|
meta: [{ title: "ChessScribe | Home" }],
|
|
links: [{ rel: "canonical", href: HOST_URL }],
|
|
}),
|
|
component: App,
|
|
});
|
|
|
|
function App() {
|
|
return <Home />;
|
|
}
|