-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed Services section to Tech Stack section
- Loading branch information
1 parent
266dd6d
commit b48c894
Showing
8 changed files
with
19 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
12 changes: 6 additions & 6 deletions
12
src/components/Servces/Services.jsx → src/components/TechStacks/TechStacks.jsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
import React, { useContext } from "react"; | ||
import "./services.css"; | ||
import Service from "../Service/Service"; | ||
import "./techstacks.css"; | ||
import TechStack from "../TechStack/TechStack"; | ||
import { ServicesContext } from "../../Context/ServicesContext"; | ||
import HeadLine from "../HeadLine/HeadLine"; | ||
|
||
const Services = () => { | ||
const TechStacks = () => { | ||
const { servicesList } = useContext(ServicesContext); | ||
return ( | ||
<div className="services-section" > | ||
<HeadLine id="services" number={"01"} description={"What i do as a service"} name={"Services"} /> | ||
<HeadLine id="services" number={"01"} description={"What i do as a service"} name={"Tech Stack"} /> | ||
<div className="services-container"> | ||
{servicesList.map((service, i) => ( | ||
<Service key={i} name={service.name} image={service.image} description={service.description} /> | ||
<TechStack key={i} name={service.name} image={service.image} description={service.description} /> | ||
))} | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Services; | ||
export default TechStacks; |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters