mirror of
https://github.com/docmost/docmost.git
synced 2025-11-12 10:02:38 +10:00
* Add more html page titles * Make tables responsive * fix react query keys * Add tooltip to sidebar toggle * fix: trim inputs * fix inputs
21 lines
680 B
TypeScript
21 lines
680 B
TypeScript
import SettingsTitle from "@/components/settings/settings-title.tsx";
|
|
import AccountTheme from "@/features/user/components/account-theme.tsx";
|
|
import PageWidthPref from "@/features/user/components/page-width-pref.tsx";
|
|
import {Divider} from "@mantine/core";
|
|
import {getAppName} from "@/lib/config.ts";
|
|
import {Helmet} from "react-helmet-async";
|
|
|
|
export default function AccountPreferences() {
|
|
return (
|
|
<>
|
|
<Helmet>
|
|
<title>Preferences - {getAppName()}</title>
|
|
</Helmet>
|
|
<SettingsTitle title="Preferences"/>
|
|
<AccountTheme/>
|
|
<Divider my={"md"}/>
|
|
<PageWidthPref/>
|
|
</>
|
|
);
|
|
}
|