Files
umami/src/app/(main)/settings/profile/page.tsx
2025-05-03 00:31:37 -07:00

11 lines
196 B
TypeScript

import { Metadata } from 'next';
import { ProfilePage } from './ProfilePage';
export default function () {
return <ProfilePage />;
}
export const metadata: Metadata = {
title: 'Profile',
};