mirror of
https://github.com/kremalicious/umami.git
synced 2025-02-14 21:10:34 +01:00
17 lines
317 B
TypeScript
17 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',
|
|
};
|