Skip to content

Commit

Permalink
fix(*): update homepage tech section
Browse files Browse the repository at this point in the history
  • Loading branch information
HoseaCodes committed Feb 11, 2024
1 parent 54f5efc commit 8dc0aab
Show file tree
Hide file tree
Showing 15 changed files with 17 additions and 4 deletions.
Binary file added src/Assets/Images/GitHub.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/Assets/Images/JS-min.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/Assets/Images/architecture.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/Assets/Images/aws.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/Assets/Images/azure.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/Assets/Images/devops.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/Assets/Images/firebase.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/Assets/Images/gitlab.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/Assets/Images/npm.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/Assets/Images/splunk.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/Assets/Images/springboot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/Assets/Images/tailwind.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/Assets/Images/terraform.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 17 additions & 3 deletions src/Components/Technologies/Tech.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,28 @@ import Py from '../../Assets/Images/Py-min.png';
import Reactt from '../../Assets/Images/Reactt-min.png';
import Swift from '../../Assets/Images/swift-min.png';
import JQuery from '../../Assets/Images/jquery-min.png';
import Azure from '../../Assets/Images/azure.png';
import AWS from '../../Assets/Images/aws.png';
import Arch from '../../Assets/Images/architecture.png';
import DevOps from '../../Assets/Images/devops.png';
import Firebase from '../../Assets/Images/firebase.png';
import Github from '../../Assets/Images/GitHub.png';
import GitLab from '../../Assets/Images/gitlab.png';
import Splunk from '../../Assets/Images/splunk.png';
import NPM from '../../Assets/Images/npm.png';
import SpringBoot from '../../Assets/Images/springboot.png';
import Terraform from '../../Assets/Images/terraform.png';
import Tailwind from '../../Assets/Images/tailwind.png';
import './Technologies.css';


class Tech extends Component {

render() {
const imgSlide = {"bootstrap": Bootstrap, "javascript": JS, "Django": Django,
"mongodb": MongoDB, "nodejs": Node, "postgresql": postgresql, "python": Py, "react": Reactt,
const imgSlide = {"AWS": AWS, "azure": Azure, "Architecture": Arch,
"firebase": Firebase, "github": Github, "gitlab": GitLab, "splunk": Splunk, "npm": NPM,
"springboot": SpringBoot, "terraform": Terraform, "react": Reactt, "tailwind": Tailwind,
"DevOps": DevOps, "bootstrap": Bootstrap, "javascript": JS, "Django": Django, "mongodb": MongoDB, "nodejs": Node, "postgresql": postgresql, "python": Py,
"swift": Swift,"jquery": JQuery, "java": 'https://i.imgur.com/wiEM1zo.png',"solidity": 'https://i.imgur.com/NhpXJN2.png'};
return (
<>
Expand All @@ -33,7 +47,7 @@ class Tech extends Component {
{Object.keys(imgSlide).map((img) => {
return (
<div className="client-slide" key={img}>
<img src={imgSlide[img]} height="100" width="150" alt={img} />
<img style={{width: "auto", height: "-webkit-fill-available"}} src={imgSlide[img]} height="50" width="150" alt={img} />
</div>
)
})}
Expand Down
1 change: 0 additions & 1 deletion src/Components/Technologies/Technologies.css
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@
}
.client-slider .client-slide {
height: 100px;
width: 250px;
}

.pinklemonade {
Expand Down

0 comments on commit 8dc0aab

Please sign in to comment.