Files
Homarr/src/pages/manage/preferences.tsx

17 lines
369 B
TypeScript
Raw Normal View History

2023-07-30 15:33:43 +02:00
import { Title } from '@mantine/core';
import Head from 'next/head';
import { MainLayout } from '~/components/layout/admin/main-admin.layout';
2023-07-29 14:49:44 +02:00
2023-07-29 14:59:11 +02:00
const PreferencesPage = () => {
2023-07-30 15:33:43 +02:00
return (
<MainLayout>
<Head>
<title>Preferences Homarr</title>
</Head>
<Title>Preferences</Title>
</MainLayout>
);
};
2023-07-29 14:49:44 +02:00
2023-07-30 15:33:43 +02:00
export default PreferencesPage;