aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/app/settings/backups
diff options
context:
space:
mode:
Diffstat (limited to 'apps/web/app/settings/backups')
-rw-r--r--apps/web/app/settings/backups/page.tsx17
1 files changed, 17 insertions, 0 deletions
diff --git a/apps/web/app/settings/backups/page.tsx b/apps/web/app/settings/backups/page.tsx
new file mode 100644
index 00000000..fc263089
--- /dev/null
+++ b/apps/web/app/settings/backups/page.tsx
@@ -0,0 +1,17 @@
+"use client";
+
+import BackupSettings from "@/components/settings/BackupSettings";
+import { useTranslation } from "@/lib/i18n/client";
+
+export default function BackupsPage() {
+ const { t } = useTranslation();
+ return (
+ <div className="flex flex-col gap-4">
+ <h1 className="text-3xl font-bold">{t("settings.backups.page_title")}</h1>
+ <p className="text-muted-foreground">
+ {t("settings.backups.page_description")}
+ </p>
+ <BackupSettings />
+ </div>
+ );
+}