umami/src/app/(main)/settings/profile/page.tsx

17 lines
317 B
TypeScript
Raw Normal View History

2023-09-29 14:29:22 +02:00
import ProfileHeader from './ProfileHeader';
import ProfileSettings from './ProfileSettings';
2023-10-08 07:42:49 +02:00
import { Metadata } from 'next';
2023-09-29 14:29:22 +02:00
export default function () {
return (
<>
<ProfileHeader />
<ProfileSettings />
</>
);
}
2023-10-08 07:42:49 +02:00
export const metadata: Metadata = {
title: 'Profile Settings | umami',
};