blob: 6060b91f6775df0707f2300b8db4fb0e38b5e45c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
import type { Metadata } from 'next';
import { ProfilePage } from './ProfilePage';
export default function () {
return <ProfilePage />;
}
export const metadata: Metadata = {
title: 'Profile',
};
|