* refactor: move to tanstack start * refactor: auth flow & volumes * refactor: repo & snapshot details * refactor: backups, create repo, volumes * refactor: create volume & restore snapshot * refactor: notifications * refactor: settings * refactor: breadcrumbs * fix: ts issues * refactor: prod deployment * fix: import css production * refactor: nitro build * refactor: winston -> consola * fix: memory leak is sse events cleanup * fix: cli usage * chore: remove rr routes file * refactor: pr feedbacks * refactor: patch api client to have a global client per call * refactor: pr feedbacks * fix(dockerfile): add explicit port * fix(e2e): healthcheck under /api
15 lines
475 B
TypeScript
15 lines
475 B
TypeScript
import { createFileRoute } from "@tanstack/react-router";
|
|
import { DownloadRecoveryKeyPage } from "~/client/modules/auth/routes/download-recovery-key";
|
|
|
|
export const Route = createFileRoute("/(auth)/download-recovery-key")({
|
|
component: DownloadRecoveryKeyPage,
|
|
head: () => ({
|
|
meta: [
|
|
{ title: "Zerobyte - Download Recovery Key" },
|
|
{
|
|
name: "description",
|
|
content: "Download your backup recovery key to ensure you can restore your data.",
|
|
},
|
|
],
|
|
}),
|
|
});
|