trails/apps/planner/app/routes/home.tsx
Ullrich Schäfer cc0f44258a
Add legal pages, ToS acceptance, and alpha banner
- Journal: Impressum (§5 TMG), Terms of Service, GDPR privacy page
- Registration flow: required ToS checkbox, termsAcceptedAt persisted
- Alpha banner on Journal (always visible); alpha badge on Planner hero
- Footer with legal links + GitHub on both apps
- Reduce PII: sendDefaultPii=false, Sentry init only after login (Journal)
- Drop Sentry from Planner (no login, no consent possible)
- Drop localStorage caching from i18n client detection
- Sync SSR i18n resources each request so locale edits HMR without restart

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-18 00:08:48 +02:00

157 lines
5.7 KiB
TypeScript

import { useRef, useState } from "react";
import { useTranslation } from "react-i18next";
import { useNavigate } from "react-router";
import type { Route } from "./+types/home";
import { parseGpxAsync, extractWaypoints } from "@trails-cool/gpx";
export function meta(_args: Route.MetaArgs) {
return [
{ title: "trails.cool Planner — Collaborative Route Planning" },
{ name: "description", content: "Plan hiking and cycling routes together in real-time. No account needed." },
];
}
const features = [
{ key: "featureCollaborative", icon: "👥" },
{ key: "featureRouting", icon: "🗺️" },
{ key: "featureElevation", icon: "⛰️" },
{ key: "featureExport", icon: "📥" },
{ key: "featureNoAccount", icon: "🔓" },
] as const;
export default function Home() {
const { t } = useTranslation("planner");
const navigate = useNavigate();
const fileInputRef = useRef<HTMLInputElement>(null);
const [importError, setImportError] = useState<string | null>(null);
const handleFileSelect = async (e: React.ChangeEvent<HTMLInputElement>) => {
const file = e.target.files?.[0];
if (!file) return;
// Reset input so the same file can be re-selected
e.target.value = "";
try {
const text = await file.text();
const gpxData = await parseGpxAsync(text);
const waypoints = extractWaypoints(gpxData);
const noGoAreas = gpxData.noGoAreas;
// Create session via API
const resp = await fetch("/api/sessions", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({}),
});
if (!resp.ok) return;
const session = await resp.json() as { url: string };
// Build session URL with imported data
const params = new URLSearchParams();
if (waypoints.length > 0) params.set("waypoints", JSON.stringify(waypoints));
if (noGoAreas.length > 0) params.set("noGoAreas", JSON.stringify(noGoAreas));
navigate(`${session.url}?${params}`);
} catch {
setImportError(t("importGpxError"));
setTimeout(() => setImportError(null), 4000);
}
};
return (
<div className="flex h-full flex-col overflow-y-auto">
{/* Hero */}
<section className="flex flex-1 flex-col items-center justify-center px-4 py-16">
<span className="mb-4 inline-block rounded-full bg-amber-100 px-3 py-1 text-xs font-medium uppercase tracking-wide text-amber-800">
{t("landing.footer.alpha")}
</span>
<h1 className="text-5xl font-bold tracking-tight text-gray-900 sm:text-6xl">
{t("title")}
</h1>
<p className="mt-4 max-w-lg text-center text-lg text-gray-600">
{t("landing.heroDescription")}
</p>
<div className="mt-8 flex gap-4">
<a
href="/new"
className="rounded-lg bg-blue-600 px-8 py-3 text-lg font-medium text-white shadow-sm hover:bg-blue-700"
>
{t("landing.startPlanning")}
</a>
<button
onClick={() => fileInputRef.current?.click()}
className="rounded-lg border border-gray-300 bg-white px-8 py-3 text-lg font-medium text-gray-700 shadow-sm hover:bg-gray-50"
>
{t("importGpx")}
</button>
<input
ref={fileInputRef}
type="file"
accept=".gpx"
className="hidden"
onChange={handleFileSelect}
/>
</div>
{importError && (
<p className="mt-4 text-sm text-red-600">{importError}</p>
)}
</section>
{/* Features */}
<section className="border-t border-gray-200 bg-gray-50 px-4 py-16">
<div className="mx-auto grid max-w-4xl gap-8 sm:grid-cols-2 lg:grid-cols-3">
{features.map(({ key, icon }) => (
<div key={key} className="rounded-lg bg-white p-6 shadow-sm">
<div className="text-3xl">{icon}</div>
<h3 className="mt-3 font-semibold text-gray-900">
{t(`landing.${key}`)}
</h3>
<p className="mt-2 text-sm text-gray-600">
{t(`landing.${key}Desc`)}
</p>
</div>
))}
</div>
</section>
{/* Secondary CTA */}
<section className="border-t border-gray-200 px-4 py-12 text-center">
<h2 className="text-xl font-semibold text-gray-900">
{t("landing.saveRoutes")}
</h2>
<p className="mt-2 text-gray-600">
{t("landing.saveRoutesDesc")}
</p>
<a
href="https://trails.cool"
className="mt-4 inline-block rounded-md border border-gray-300 px-6 py-2 text-gray-700 hover:bg-gray-50"
>
{t("landing.goToJournal")}
</a>
</section>
{/* Footer */}
<footer className="border-t border-gray-200 px-4 py-6">
<div className="mx-auto flex max-w-4xl flex-wrap items-center justify-between gap-4 text-sm text-gray-400">
<span>
{t("landing.footer.builtWith")}
<span className="ml-2 text-xs">· {t("landing.footer.alpha")}</span>
</span>
<div className="flex gap-4">
<a href="https://trails.cool/legal/imprint" className="hover:text-gray-600">
{t("landing.footer.imprint")}
</a>
<a href="https://trails.cool/legal/privacy" className="hover:text-gray-600">
{t("landing.footer.privacy")}
</a>
<a href="https://trails.cool/legal/terms" className="hover:text-gray-600">
{t("landing.footer.terms")}
</a>
<a href="https://github.com/trails-cool/trails" className="hover:text-gray-600">
{t("landing.footer.source")}
</a>
</div>
</div>
</footer>
</div>
);
}