feat(profile): add user profile management with first and last name fields

This commit is contained in:
Nils-Johan Gynther
2026-04-17 20:44:23 +02:00
parent 68b29f6d8e
commit a9e83544c5
9 changed files with 329 additions and 3 deletions
+16
View File
@@ -0,0 +1,16 @@
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>
</>
);
}