diff options
Diffstat (limited to 'src/app/(main)/settings/profile/page.tsx')
| -rw-r--r-- | src/app/(main)/settings/profile/page.tsx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/app/(main)/settings/profile/page.tsx b/src/app/(main)/settings/profile/page.tsx new file mode 100644 index 0000000..6060b91 --- /dev/null +++ b/src/app/(main)/settings/profile/page.tsx @@ -0,0 +1,10 @@ +import type { Metadata } from 'next'; +import { ProfilePage } from './ProfilePage'; + +export default function () { + return <ProfilePage />; +} + +export const metadata: Metadata = { + title: 'Profile', +}; |