Skip to content

Commit

Permalink
Update contact page
Browse files Browse the repository at this point in the history
  • Loading branch information
serengia committed Apr 19, 2023
1 parent 108174e commit 49ba3e1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
8 changes: 6 additions & 2 deletions src/components/DeveloperContent.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ export default function DeveloperContent() {
<p>
In my current job, I am in charge of building production-ready web
applications for SMEs. I also manage the entire Software Development
Process from Needs Analysis, Project Planning, Prototyping, Coding,
Testing, Deployment, and Maintenance/Continuous Integration.
Lifecycle(SDLC) from Needs Analysis, Project Planning, Prototyping,
Coding, Testing, Deployment, and Maintenance/Continuous Integration.
</p>
<p>
Through my day-to-day job, I&apos;ve developed extensive knowledge in
Expand All @@ -39,6 +39,10 @@ export default function DeveloperContent() {
mentoring, and effective communication skills across different
cultures
</li>
<li>
Coding best practices and principles: DRY, KISS, YAGNI & SOLID
principles
</li>
</ul>
<p>
My mission is to use my expertise to empower other people&apos;s dreams.
Expand Down
4 changes: 2 additions & 2 deletions src/redux/countriesSlice.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const countriesSlice = createSlice({
},
},
extraReducers: (builder) => {
// get meals
// get data
builder
.addCase(getCountriesData.pending, (state) => {
state.isLoading = true;
Expand All @@ -74,7 +74,7 @@ const countriesSlice = createSlice({
state.isLoading = false;
});

// get single meal
// get single country
builder
.addCase(getCountryData.pending, (state) => {
state.isLoading = true;
Expand Down

0 comments on commit 49ba3e1

Please sign in to comment.