mirror of
https://github.com/TheRealOwenRees/chess-scribe-website.git
synced 2026-09-19 11:03:52 +00:00
16 lines
442 B
TypeScript
16 lines
442 B
TypeScript
import { createFileRoute } from "@tanstack/react-router";
|
|
import { HOST_URL } from "#/config.ts";
|
|
import ContactContainer from "#/pages/Contact/Contact.container.tsx";
|
|
|
|
export const Route = createFileRoute("/contact")({
|
|
head: () => ({
|
|
meta: [{ title: "ChessScribe | Contact" }],
|
|
links: [{ rel: "canonical", href: `${HOST_URL}/contact` }],
|
|
}),
|
|
component: RouteComponent,
|
|
});
|
|
|
|
function RouteComponent() {
|
|
return <ContactContainer />;
|
|
}
|