♻️ Move preferences in router
This commit is contained in:
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