Skip to content

Commit

Permalink
feat:add dynamic about and remove pre values
Browse files Browse the repository at this point in the history
  • Loading branch information
mahmoudalnkeeb committed May 10, 2024
1 parent 5df424a commit 3eaaa4f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 12 deletions.
14 changes: 2 additions & 12 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,22 +22,12 @@
<body>
<canvas id="background"></canvas>
<main>
<h1 id="name">Mahmoud Alnakeeb</h1>
<h1 id="name"></h1>
<div class="job-title">
<span class="role" id="role">Backend Developer</span>
<span class="role" id="role"></span>
<span class="company company-empty" id="company"></span>
</div>
<p class="bio" id="about">
Starting my backend developer journey in 2020, I immersed myself in
JavaScript and Node.js, cultivating a strong foundation. Since then,
I've embraced continuous learning, completing web development courses
and engaging in diverse projects. Venturing into Rust in 2024 was a
pivotal decision, broadening my skill set and igniting new passions.
Now, I'm on the lookout for exciting opportunities in backend
development where I can apply my expertise and contribute to
cutting-edge projects. Eager to embark on the next chapter of my
professional journey, I'm ready to tackle challenges and make meaningful
contributions.
</p>
<ul class="socials">
<li class="in">
Expand Down
1 change: 1 addition & 0 deletions js/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ fetch("../config.json").then(async (res) => {
companyElement.classList.remove('company-empty')
companyElement.innerText = info.company;
}
aboutElement.innerText = info.about
anchors.forEach((anchor) => {
anchor.element.setAttribute("href", socials[`${anchor.name}`]);
});
Expand Down

0 comments on commit 3eaaa4f

Please sign in to comment.