# Customizing the Experience Section

**1. Changing the Section Title:**

* Locate the `<h2>` tag within the `Experience` component.
* Modify the text within the `<h2>` tag to reflect the desired section title.

```jsx
jsxCopy code<h2 className={styles.title}>[Replace this text with your desired section title]</h2>
```

**2. Updating Skills:**

* Open the `skills.json` file located in the `data` directory.
* Update or add new skills as needed.
* Ensure you have corresponding images for each skill, and update the `imageSrc` attribute accordingly.

```json
jsonCopy code[
   {
      "title": "[Replace this with the name of your skill]",
      "imageSrc": "[Replace this with the path to your skill image]"
   },
   // Add more skills if needed
]
```

**3. Updating Work History:**

* Open the `history.json` file located in the `data` directory.
* Update or add new work history entries as needed.
* Ensure you have corresponding images for each organization, and update the `imageSrc` attribute accordingly.

```json
jsonCopy code[
   {
      "role": "[Replace this with your role]",
      "organisation": "[Replace this with the name of the organisation]",
      "startDate": "[Replace this with the start date of your employment]",
      "endDate": "[Replace this with the end date of your employment]",
      "experiences": [
         "[Replace this with a brief description of your experience]",
         // Add more experiences if needed
      ],
      "imageSrc": "[Replace this with the path to the organisation's logo image]"
   },
   // Add more work history entries if needed
]
```

**4. Previewing Changes:**

* After making desired customizations, save the files.
* Preview your website to ensure the changes are reflected as intended.

<br>
