- Turborepo + pnpm workspaces with catalog for shared dependency versions - TypeScript strict config (base + per-package extends) - Tailwind CSS v4 via @tailwindcss/vite plugin - ESLint + Prettier shared config - Planner app scaffolded with React Router 7 (port 3001) - Journal app scaffolded with React Router 7 (port 3000) - Both apps build and start successfully via turbo Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
19 lines
553 B
TypeScript
19 lines
553 B
TypeScript
import type { Route } from "./+types/home";
|
|
|
|
export function meta({}: Route.MetaArgs) {
|
|
return [
|
|
{ title: "trails.cool Planner" },
|
|
{ name: "description", content: "Collaborative route planning" },
|
|
];
|
|
}
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div className="flex h-full items-center justify-center">
|
|
<div className="text-center">
|
|
<h1 className="text-4xl font-bold text-gray-900">trails.cool Planner</h1>
|
|
<p className="mt-4 text-lg text-gray-600">Collaborative route planning</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|