zerobyte/app/routes/(auth)/download-recovery-key.tsx
2026-02-28 17:05:27 +01:00

16 lines
538 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,
errorComponent: () => <div>Failed to load recovery key</div>,
head: () => ({
meta: [
{ title: "Zerobyte - Download Recovery Key" },
{
name: "description",
content: "Download your backup recovery key to ensure you can restore your data.",
},
],
}),
});