mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
16 lines
317 B
TypeScript
16 lines
317 B
TypeScript
import ProfileHeader from './ProfileHeader';
|
|
import ProfileSettings from './ProfileSettings';
|
|
import { Metadata } from 'next';
|
|
|
|
export default function () {
|
|
return (
|
|
<>
|
|
<ProfileHeader />
|
|
<ProfileSettings />
|
|
</>
|
|
);
|
|
}
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Profile Settings | umami',
|
|
};
|