Files
freno-dev/src/routes/privacy-policy/gaze.tsx
2026-07-23 21:54:52 -04:00

28 lines
1.0 KiB
TypeScript

import { buildSubdomainUrl } from "~/lib/site-context";
/**
* Legacy Gaze privacy policy route — now a 308 permanent redirect to the Gaze
* subdomain.
*
* The privacy policy content has been migrated to
* `src/routes/gaze/privacy.tsx`, served at `gaze.freno.me/privacy`
* (vercel.json host rewrites map the Gaze subdomain to the internal
* `/gaze/*` prefix). Keeping this route as a permanent (308) server-side
* redirect — rather than a client `<Navigate>` — preserves SEO equity and
* gives installed / linked URLs a stable resolution path, mirroring how the
* legacy Life and Lineage marketing page was redirected.
*
* Implemented as a SolidStart API route (`GET` handler returning a Response)
* so the redirect happens before any rendering; the route no longer ships a
* page component.
*/
export function GET() {
return new Response(null, {
status: 308,
headers: {
Location: buildSubdomainUrl("gaze", "/privacy"),
"Cache-Control": "public, max-age=0, must-revalidate"
}
});
}