Skip to content

Commit

Permalink
✨ (About.jsx): Add Recommendations component to About page for displa…
Browse files Browse the repository at this point in the history
…ying recommendations section

📝 (Recommendations.jsx): Create Recommendations component for displaying recommendations section in About page
♻️ (Backend.jsx): Update backend tech skills list by replacing GraphQL with ExpressJs and adding JAVA (Basic)
♻️ (Frontend.jsx): Update frontend tech skills list by adding Svelte and moving Javascript entry
♻️ (HighSkills.jsx): Update high skills tech skills list by adding NextJs and moving Redux entry
♻️ (Other.jsx): Update other tech skills list by replacing Typescript with Docker, adding GraphQL, and adding WebSocket
♻️ (TechSkills.jsx): Rearrange the order of components in TechSkills to display Other section last in the list
  • Loading branch information
Milan-960 committed Oct 17, 2024
1 parent 2082302 commit 09c6f60
Show file tree
Hide file tree
Showing 7 changed files with 45 additions and 15 deletions.
6 changes: 6 additions & 0 deletions src/Pages/About/About.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import homeMainIcon from "../../assets/home-main.svg";
import { useTranslation } from "react-i18next";

import Fade from "react-reveal/Fade";
import Recommendations from "./Recommodations/Recommendations";

const About = () => {
const { t } = useTranslation();
Expand Down Expand Up @@ -53,6 +54,11 @@ const About = () => {
<img src={aboutPromoImg} alt="about" />
</div> */}
</div>

{/* <Fade top>
<Recommendations />
</Fade> */}

<Fade top>
<h2 className={ms.skills}>
{t("aboutpage.professional.title")}{" "}
Expand Down
11 changes: 11 additions & 0 deletions src/Pages/About/Recommodations/Recommendations.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import React from "react";

const Recommendations = () => {
return (
<div>
<h1>recommendations</h1>
</div>
);
};

export default Recommendations;
9 changes: 7 additions & 2 deletions src/Pages/About/TechSkills/Backend.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,15 @@ export const Backend = () => {
link: "https://nestjs.com/",
},
{
name: "GraphQL",
link: "https://graphql.org/",
name: "ExpressJs",
link: "https://expressjs.com/",
},
{
name: "JAVA (Basic)",
link: "https://www.java.com/en/",
},
];

return (
<div>
<Zoom top cascade>
Expand Down
12 changes: 8 additions & 4 deletions src/Pages/About/TechSkills/Frontend.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,18 @@ export const Frontend = () => {
name: "Reactjs",
link: "https://reactjs.org",
},
{
name: "Javascript",
link: "https://www.javascript.com/",
},
{
name: "NextJs",
link: "https://nextjs.org/",
},
{
name: "Svelte",
link: "https://svelte.dev/",
},
{
name: "Javascript",
link: "https://www.javascript.com/",
},
{
name: "Material UI",
link: "https://mui.com/",
Expand Down
8 changes: 4 additions & 4 deletions src/Pages/About/TechSkills/HighSkills.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ export const HighSkills = () => {
name: "Reactjs",
link: "https://reactjs.org",
},
{
name: "NextJs",
link: "https://nextjs.org/",
},
{
name: "Javascript",
link: "https://www.javascript.com/",
Expand All @@ -22,10 +26,6 @@ export const HighSkills = () => {
name: "Redux",
link: "https://redux.js.org",
},
{
name: "NextJs",
link: "https://nextjs.org/",
},
{
name: "Nodejs",
link: "https://nodejs.org/en/",
Expand Down
12 changes: 8 additions & 4 deletions src/Pages/About/TechSkills/Other.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,16 @@ import Zoom from "react-reveal/Zoom";
export const Other = () => {
const Other = [
{
name: "Typescript",
link: "https://www.typescriptlang.org/",
name: "Docker",
link: "https://www.docker.com/",
},
{
name: "Redux",
link: "https://redux.js.org",
name: "GraphQL",
link: "https://graphql.org/",
},
{
name: "WebSocket",
link: "https://socket.io/",
},
];

Expand Down
2 changes: 1 addition & 1 deletion src/Pages/About/TechSkills/TechSkills.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ const TechSkills = () => {
<>
<HighSkills />
<Frontend />
<Other />
<Backend />
<Database />
<Tools />
<Hosting />
<Discipline />
<Other />
</>
);
};
Expand Down

0 comments on commit 09c6f60

Please sign in to comment.