Skip to content

Profile Format

Mofiro Jean edited this page Nov 29, 2024 · 1 revision

Profile Format

Adding Your Profile

To add your profile to Peerlist:

  1. Navigate to the src/app/members folder.
    This folder contains member profile files.

  2. Update the members.ts file

    • navigate into the file and add you details at the base.
  3. Add Your Profile Information
    Use the following format (TypeScript example):

    export const profile = {
      name: 'John Doe',
      role: 'Frontend Developer',
      skills: ['Angular', 'TypeScript', 'RxJS'],
      bio: 'Passionate Angular developer based in Douala, Cameroon.',
      contact: {
        email: 'johndoe@example.com',
        github: 'https://github.com/johndoe',
        linkedin: 'https://linkedin.com/in/johndoe'
      }
    };
  4. Submit Your Changes
    Follow the Contribution Guidelines to create a pull request.

Clone this wiki locally