DEV;Rename service to skills

This commit is contained in:
Roman Jaroš 2022-07-07 11:50:54 +02:00
parent c8ec8a948d
commit f3cb499eca
4 changed files with 9 additions and 5 deletions

View file

Before

Width:  |  Height:  |  Size: 5 KiB

After

Width:  |  Height:  |  Size: 5 KiB

View file

@ -7,7 +7,7 @@ import { ISkill } from "../types/skills";
import MySection from "./MySection"; import MySection from "./MySection";
import { GRID_SIZE } from "@treejs/components/Grid/types"; import { GRID_SIZE } from "@treejs/components/Grid/types";
const Services: FC = () => { const Skills: FC = () => {
const renderSkills = useMemo(() => { const renderSkills = useMemo(() => {
let i = 0; let i = 0;
return map((skillList: ISkill[]) => { return map((skillList: ISkill[]) => {
@ -38,7 +38,7 @@ const Services: FC = () => {
}, []); }, []);
return ( return (
<MySection iconName="services"> <MySection iconName="skills">
<MyTitle left="Umím" right="Ovládat" /> <MyTitle left="Umím" right="Ovládat" />
<Grid cols={{ [GRID_SIZE.SM]: 4 }} className="mt-10 grid-cols-2"> <Grid cols={{ [GRID_SIZE.SM]: 4 }} className="mt-10 grid-cols-2">
<GridCol> <GridCol>
@ -78,4 +78,4 @@ const Services: FC = () => {
); );
}; };
export default Services; export default Skills;

View file

@ -67,6 +67,10 @@ export const skills: ISkill[][] = [
name: "NightwatchJS", name: "NightwatchJS",
level: "full", level: "full",
}, },
{
name: "Katalon",
level: "full",
},
{ {
name: "Jenkins (CI, CD)", name: "Jenkins (CI, CD)",
level: "full", level: "full",

View file

@ -1,7 +1,7 @@
import type { NextPage } from "next"; import type { NextPage } from "next";
import AboutMe from "../components/AboutMe"; import AboutMe from "../components/AboutMe";
import Services from "../components/Services"; import Skills from "../components/Skills";
import Contact from "../components/Contact"; import Contact from "../components/Contact";
import FullStory from "../components/FullStory"; import FullStory from "../components/FullStory";
import { NextSeo, WebPageJsonLd } from "next-seo"; import { NextSeo, WebPageJsonLd } from "next-seo";
@ -65,7 +65,7 @@ const Home: NextPage = () => {
<span className="mytitle-left">&nbsp;/&gt;</span> <span className="mytitle-left">&nbsp;/&gt;</span>
</header> </header>
<AboutMe /> <AboutMe />
<Services /> <Skills />
<Contact /> <Contact />
<FullStory /> <FullStory />
</div> </div>