From f3cb499ecab77611fb5b07b6e133e8fd8978417e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Jaro=C5=A1?= Date: Thu, 7 Jul 2022 11:50:54 +0200 Subject: [PATCH] DEV;Rename service to skills --- public/{services.svg => skills.svg} | 0 src/components/{Services.tsx => Skills.tsx} | 6 +++--- src/constants/skills.ts | 4 ++++ src/pages/index.tsx | 4 ++-- 4 files changed, 9 insertions(+), 5 deletions(-) rename public/{services.svg => skills.svg} (100%) rename src/components/{Services.tsx => Skills.tsx} (95%) diff --git a/public/services.svg b/public/skills.svg similarity index 100% rename from public/services.svg rename to public/skills.svg diff --git a/src/components/Services.tsx b/src/components/Skills.tsx similarity index 95% rename from src/components/Services.tsx rename to src/components/Skills.tsx index 0c0f223..c4f4279 100644 --- a/src/components/Services.tsx +++ b/src/components/Skills.tsx @@ -7,7 +7,7 @@ import { ISkill } from "../types/skills"; import MySection from "./MySection"; import { GRID_SIZE } from "@treejs/components/Grid/types"; -const Services: FC = () => { +const Skills: FC = () => { const renderSkills = useMemo(() => { let i = 0; return map((skillList: ISkill[]) => { @@ -38,7 +38,7 @@ const Services: FC = () => { }, []); return ( - + @@ -78,4 +78,4 @@ const Services: FC = () => { ); }; -export default Services; +export default Skills; diff --git a/src/constants/skills.ts b/src/constants/skills.ts index 32bd8c2..25f7790 100644 --- a/src/constants/skills.ts +++ b/src/constants/skills.ts @@ -67,6 +67,10 @@ export const skills: ISkill[][] = [ name: "NightwatchJS", level: "full", }, + { + name: "Katalon", + level: "full", + }, { name: "Jenkins (CI, CD)", level: "full", diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 6dc2068..1663aa2 100755 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -1,7 +1,7 @@ import type { NextPage } from "next"; import AboutMe from "../components/AboutMe"; -import Services from "../components/Services"; +import Skills from "../components/Skills"; import Contact from "../components/Contact"; import FullStory from "../components/FullStory"; import { NextSeo, WebPageJsonLd } from "next-seo"; @@ -65,7 +65,7 @@ const Home: NextPage = () => {  /> - +