diff --git a/components/customHead.tsx b/components/customHead.tsx index 2c887dc..99da439 100644 --- a/components/customHead.tsx +++ b/components/customHead.tsx @@ -6,7 +6,10 @@ export default function CustomHead() { Art Nikitin - + @@ -15,17 +18,26 @@ export default function CustomHead() { - - - + + + - + - + + + + ); } diff --git a/components/skillPill.tsx b/components/skillPill.tsx index 1e54003..dc3051a 100644 --- a/components/skillPill.tsx +++ b/components/skillPill.tsx @@ -10,7 +10,7 @@ export default function SkillPill(props: ISkillPillProps) { const { skill } = props; const prettyName = skills.find((s) => s.tech === skill)?.prettyName; return ( -
+

{prettyName}

); diff --git a/components/systemDropdown.tsx b/components/systemDropdown.tsx index bd259a8..d84c4fe 100644 --- a/components/systemDropdown.tsx +++ b/components/systemDropdown.tsx @@ -21,10 +21,10 @@ export default function SystemDropdown(props: ISystemDropdownProps) { return (
setIsOpen(!isOpen)} ref={descriptionRef} > @@ -44,18 +44,21 @@ export default function SystemDropdown(props: ISystemDropdownProps) {

-
+

+ {system.details.impact} +

+
{system.details.techs.map((skill) => ( ))}
{system.body} diff --git a/components/techIcon.tsx b/components/techIcon.tsx index bf328f3..29712e9 100644 --- a/components/techIcon.tsx +++ b/components/techIcon.tsx @@ -23,6 +23,7 @@ export type TechType = | "aws" | "serverless" | "splunk" + | "tableau" | "redshift"; interface props { diff --git a/components/utils/skills.ts b/components/utils/skills.ts index ccfc6d4..6adadfd 100644 --- a/components/utils/skills.ts +++ b/components/utils/skills.ts @@ -6,6 +6,11 @@ export const skills: ISkill[] = [ prettyName: "ReactJS", years: 4, }, + { + tech: "tableau", + prettyName: "Tableau", + years: 1, + }, { tech: "serverless", prettyName: "Serverless Framework", diff --git a/pages/index.tsx b/pages/index.tsx index 9901f2c..6ba8d20 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -199,7 +199,7 @@ export default function Home(props: props) { className="relative w-full min-h-screen p-8 flex flex-col gap-5 pointer-events-auto " > -
+
diff --git a/public/hq_icons/tableau-icon.png b/public/hq_icons/tableau-icon.png new file mode 100644 index 0000000..23aa66f Binary files /dev/null and b/public/hq_icons/tableau-icon.png differ