umami/src/app/(main)/profile/page.tsx
2024-02-17 15:12:14 -08:00

10 lines
192 B
TypeScript

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