umami/src/app/(main)/settings/profile/page.tsx
2023-10-07 22:42:49 -07:00

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',
};