Skip to content

Commit 470dd35

Browse files
committed
more tweaks
1 parent 274dee1 commit 470dd35

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

src/components/contactCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ const ContactCard = () => {
7575
textDecoration="none"
7676
// minW={{ base: "auto", md: "200px" }}
7777
>
78-
Get in touch
78+
Email me at me@jakelyell.dev
7979
</Link>
8080

8181
<Flex gap={{ base: "3", md: "4" }} justify="center" wrap="wrap">

src/components/workExperience.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ const WorkExperience = ({
8282

8383
{skills && skills.length > 0 && (
8484
<Box>
85-
<Text fontSize="sm" fontWeight="semibold" color="gray.600" mb="2">
85+
<Text fontSize="sm" fontWeight="semibold" color="gray.400" mb="2">
8686
Skills & Technologies:
8787
</Text>
8888
<Flex flexWrap="wrap" gap="2">

src/sections/home.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ const Home = () => {
7070
<Link
7171
color="#0052CC"
7272
fontWeight="extrabold"
73-
textShadow="1px 1px 1px white, -1px 1px 1px white, -1px -1px 1px white, 1px -1px 1px white"
73+
textShadow="1px 1px 1px lightgray, -1px 1px 1px lightgray, -1px -1px 1px lightgray, 1px -1px 1px lightgray"
7474
href='https://www.atlassian.com/'
7575
target="_blank"
7676
>

src/sections/skills.tsx

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {
55
SiGit, SiGithub, SiLinux, SiIntellijidea, SiJira, SiAmazonwebservices,
66
SiConfluence, SiPostman, SiNpm, SiSpringboot, SiGraphql, SiAwslambda, SiOpensearch,
77
SiRedux, SiWebpack, SiVite, SiJupyter, SiPandas, SiNumpy, SiScikitlearn, SiOpenai,
8-
SiChakraui, SiKubernetes, SiJenkins, SiGithubactions, SiServerless, SiApachelucene, SiBamboo, SiBitbucket
8+
SiChakraui, SiKubernetes, SiJenkins, SiGithubactions, SiServerless, SiApachelucene, SiBamboo, SiBitbucket, SiGithubcopilot
99
} from 'react-icons/si';
1010
import {
1111
FaJava, FaDatabase, FaCloud, FaCode, FaTools, FaCogs, FaChartBar,
@@ -53,13 +53,13 @@ const Skills = () => {
5353
"Bitbucket": { icon: SiBitbucket, color: "#0052CC" },
5454

5555
// Data Science
56-
"Pandas": { icon: SiPandas, color: "#150458" },
57-
"NumPy": { icon: SiNumpy, color: "#013243" },
56+
"Pandas": { icon: SiPandas, color: "#442d9eff" },
57+
"NumPy": { icon: SiNumpy, color: "#005875ff" },
5858
"Jupyter": { icon: SiJupyter, color: "#F37626" },
5959
"Machine Learning": { icon: SiScikitlearn, color: "#F7931E" },
6060

6161
// Tools
62-
"GitHub": { icon: SiGithub, color: "#181717" },
62+
"GitHub": { icon: SiGithub, color: "#000000ff" },
6363
"IntelliJ IDEA": { icon: SiIntellijidea, color: "#000000" },
6464
// "VS Code": { icon: null, color: "#007ACC" },
6565
"Jira": { icon: SiJira, color: "#0052CC" },
@@ -94,7 +94,8 @@ const Skills = () => {
9494
"Chrome DevTools": { icon: FaTools, color: "#4285F4" },
9595
"Responsive Design": { icon: FaCode, color: "#6B7280" },
9696
"Single Page Applications": { icon: FaCode, color: "#6B7280" },
97-
"Kotlin": { icon: FaCode, color: "#7F52FF" }
97+
"Kotlin": { icon: FaCode, color: "#7F52FF" },
98+
"GitHub Copilot": { icon: SiGithubcopilot, color: "#6B7280" },
9899
};
99100

100101
return iconMap[skill] || null;
@@ -145,7 +146,7 @@ const Skills = () => {
145146
category: "Tools",
146147
skills: [
147148
"Git", "GitHub", "IntelliJ IDEA", "VS Code", "Jira",
148-
"Confluence", "Postman", "Chrome DevTools", "npm", "Maven", "Cursor AI", "ChatGPT"
149+
"Confluence", "Postman", "Chrome DevTools", "npm", "Maven", "Cursor AI", "ChatGPT", "GitHub Copilot"
149150
]
150151
}
151152
];

0 commit comments

Comments
 (0)