♻️ Move preferences in router
This commit is contained in:
@@ -86,7 +86,7 @@ const ManagementPage = () => {
|
||||
</Group>
|
||||
</Card>
|
||||
</UnstyledButton>
|
||||
<UnstyledButton component={Link} href="/manage/preferences">
|
||||
<UnstyledButton component={Link} href="/user/preferences">
|
||||
<Card className={classes.quickActionCard}>
|
||||
<Group spacing={30} noWrap>
|
||||
<Stack spacing={0}>
|
||||
|
||||
18
src/pages/manage/settings/index.tsx
Normal file
18
src/pages/manage/settings/index.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
import { Title, Text } from '@mantine/core';
|
||||
import { MainLayout } from '~/components/layout/admin/main-admin.layout';
|
||||
import { CommonHeader } from '~/components/layout/common-header';
|
||||
|
||||
const SettingsPage = () => {
|
||||
return (
|
||||
<MainLayout>
|
||||
<CommonHeader>
|
||||
<title>Settings • Homarr</title>
|
||||
</CommonHeader>
|
||||
|
||||
<Title>Settings</Title>
|
||||
<Text>Coming soon!</Text>
|
||||
</MainLayout>
|
||||
);
|
||||
};
|
||||
|
||||
export default SettingsPage;
|
||||
Reference in New Issue
Block a user