mirror of
https://github.com/umami-software/umami.git
synced 2026-02-09 23:27:12 +01: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',
|
|
};
|