mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-10 15:35:55 +01:00
12 lines
291 B
TypeScript
12 lines
291 B
TypeScript
|
|
import { Title } from "@mantine/core";
|
||
|
|
import { MainLayout } from "~/components/layout/admin/main-admin.layout";
|
||
|
|
|
||
|
|
const SettingsPage = () => {
|
||
|
|
return (
|
||
|
|
<MainLayout>
|
||
|
|
<Title>Good morning, Manicraft1001</Title>
|
||
|
|
</MainLayout>
|
||
|
|
)
|
||
|
|
}
|
||
|
|
|
||
|
|
export default SettingsPage;
|