18 lines
498 B
TypeScript
18 lines
498 B
TypeScript
import { createRoute } from "@tanstack/react-router";
|
|||
|
|
import { Route as appRoute } from "../_app";
|
||
|
|
|
||
|
|
function ProjectsPage() {
|
||
|
|
return (
|
||
|
|
<div className="flex flex-col items-center justify-center min-h-[60vh]">
|
||
|
|
<h1 className="text-3xl font-bold mb-2">Projects</h1>
|
||
|
|
<p className="text-muted-foreground">Coming in T6 — project management.</p>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
export const Route = createRoute({
|
||
|
|
getParentRoute: () => appRoute,
|
||
|
|
path: "/projects",
|
||
|
|
component: ProjectsPage,
|
||
|
|
});
|