Customizing Your Profile
How to change the name, photo, interests, and details on your profile page.
All the editable profile content lives in one file: src/data/profile.ts.
Open it and you will find the following sections:
profile — name, tagline, location, last login, member since. Edit these to match your identity.
interests — six categories with sample prompts. Replace the content strings with your own.
details — a short list of label/value pairs. Add, remove, or rename rows to fit your situation.
blurbs — the About Me and Who I’d Like to Meet sections. Write whatever you want here.
Adding a photo
Set photoSrc on the profile object to a path under /public, for example:
photoSrc: '/images/profile.jpg',
Drop your image file into the public/images/ directory and it will be served at that path after build.
If photoSrc is not set, a grey CSS placeholder box appears instead. That is intentional — it keeps the layout intact without requiring a photo.