import Journey from "@/Journey"; import { LinearSpeacialistBar } from "@/SpecialistBar"; import type { NextPage } from "next"; import Head from "next/head"; import { useState } from "react"; import Gravatar from "react-gravatar"; const specialistPageSize = 12; const Resume: NextPage = () => { const [specialistLimitSize, setSpecialistLimitSize] = useState(specialistPageSize) const loadMore = () => { if (thoseWhatIknowAndFamiliarAndSpecialistAt.length - specialistPageSize > specialistLimitSize) setSpecialistLimitSize(specialistLimitSize + specialistPageSize) else setSpecialistLimitSize(thoseWhatIknowAndFamiliarAndSpecialistAt.length) } const thoseWhatIknowAndFamiliarAndSpecialistAt = [ { title: "HTML", percent: 100, }, { title: "CSS", percent: 60, }, { title: "Web3", percent: 60, }, { title: "Javascript", percent: 100, }, { title: "Typescript", percent: 90, }, { title: "Reactjs", percent: 100, }, { title: "Nextjs", percent: 90, }, { title: "Vuejs", percent: 80, }, { title: "Rust", percent: 70 }, { title: "Nuxtjs", percent: 80, }, { title: "Go", percent: 60, }, { title: "MongoDB", percent: 80, }, { title: "Docker", percent: 100, }, { title: "K8s", percent: 60, }, { title: "WebRTC", percent: 60, }, { title: "Kafka", percent: 80, }, { title: "Elastic search", percent: 95, }, { title: "Java", percent: 100, }, { title: "Python", percent: 100, }, { title: "Tailwindcss", percent: 100, }, { title: "Unity", percent: 50, }, { title: "Linux", percent: 90, }, { title: "Bash", percent: 60, }, { title: "Postgresql", percent: 60, }, { title: "Express", percent: 95, }, { title: "NodeJs", percent: 95, }, { title: "Solidity", percent: 50, }, { title: "ERC20", percent: 50, }, { title: "YAML", percent: 100, }, { title: "Redis", percent: 100, }, { title: "RabbitMQ", percent: 80, }, { title: "SEO", percent: 60, }, { title: "Laravel", percent: 60, }, { title: "PHP", percent: 80, }, { title: "MySQL", percent: 90, }, { title: "Sqlite", percent: 100, }, { title: "Nginx", percent: 90, }, { title: "gRPC", percent: 50, }, { title: "Rest", percent: 100, }, { title: "oAuth", percent: 80, }, { title: "Googling", percent: 100, }, { title: "GraphQL", percent: 60, }, { title: "actix", percent: 80, }, { title: "WebSocket", percent: 100, }, { title: "Kibana", percent: 60, }, { title: "jQuery", percent: 60, }, { title: "NodeRed", percent: 80, }, { title: "Bootstrap", percent: 90, }, { title: "SysAdmin", percent: 80, }, { title: "SpringBoot", percent: 90, }, { title: "Jira", percent: 100, }, { title: "Bamboo", percent: 100, }, { title: "Git", percent: 100, }, { title: "Gitlab CI", percent: 100, }, { title: "STOMP", percent: 90, }, { title: "PWA", percent: 100, }, { title: "Docker Swarm", percent: 100, }, ].sort((a, b) => a.percent === b.percent ? a.title.localeCompare(b.title) : b.percent - a.percent) const projects = [ { title: "Baladam", tags: ["nuxtjs", "java", "springboot", "mongodb", "elastic", "redis", "rust", "rabbitmq"], description: "Hire the freelancers for any job, online.", year: 2019, url: "https://mucut.ir", isLunched: false }, { title: "Mucut", tags: ["nuxtjs", "python", "mysql", "nginx", "pm2"], description: "Find & book beauty services like hairdressing, manicure, spa or massage.", year: 2020, url: "https://mucut.ir", isLunched: true }, { title: "!mixsome", tags: ["reactjs", "web3"], description: "Approval manager dashboard and revoking approvals ", year: 2022, url: "https://dapp.mixsomecash.com", isLunched: true }, { title: "Yaus", tags: ["rust", "actix", "mongodb"], description: "Free URL shortener and link services", year: 2021, url: "https://yaus.ir", isLunched: true }, { title: "Mafia Game", tags: ["nodejs", "redis", "reactjs", "sqlite"], description: "Mafia Game (werewolf)", year: 2021, url: "https://mafia.game.igarson.app", isLunched: true }, { title: "iGarson", tags: ["springboot", "stomp", "reactjs", "nextjs", "mongodb", "pg", ".net", "pwa", "rabbitmq", "docker swarm", "elastic", "redis"], description: "iGarson is a first smart resturant assistance infestracture", year: 2022, url: "https://igarson.app", isLunched: true } ].sort((a, b) => b.year - a.year) return ( <> رزومه امیرحسین مقیسه

Amirmoghi3

Amir Hossein Moghiseh

PM4D | Web3 Developer | Devops Specialist | Web Engineer

Residence : Iran
City : Tehran
Birthday : Aug/26/1998
Experiance : 2016
{ thoseWhatIknowAndFamiliarAndSpecialistAt.slice(1, specialistLimitSize).map(occupation => ( )) } { thoseWhatIknowAndFamiliarAndSpecialistAt.length > specialistLimitSize && Load More ... }
{/*

Discover My Amazing Journay!

{""} Look At My Amazing Journay . {""}

*/}
{projects.map(project => ( ))}
) } export default Resume;