blob: fc263089e2c72bd20e5577dabe8b3cfa22b51bb9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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>
);
}
|