CI pipeline with parallel jobs for fast feedback: - typecheck, lint, unit tests, build run in parallel - e2e tests run after build - Playwright artifacts uploaded on failure ESLint wired into both apps with sensible defaults: - underscore-prefixed unused vars allowed - root package.json marked as type: module Architecture updated: Caddy as reverse proxy with auto HTTPS. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
19 lines
556 B
TypeScript
19 lines
556 B
TypeScript
import type { Route } from "./+types/home";
|
|
|
|
export function meta(_args: 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>
|
|
);
|
|
}
|