Files
recipe-app/frontend/app/profil/page.tsx
T

17 lines
426 B
TypeScript

import Navigation from '../Navigation';
import ProfileClient from './ProfileClient';
export const metadata = { title: 'Min profil' };
export default function ProfilPage() {
return (
<>
<Navigation />
<main style={{ padding: '1rem', maxWidth: '800px', margin: '0 auto' }}>
<h1 style={{ marginBottom: '1.5rem' }}>Min profil</h1>
<ProfileClient />
</main>
</>
);
}