Skip to content

Commit 083a095

Browse files
authored
Merge pull request #22 from tig-github/21-add-experience-section
Add Experience Section
2 parents bf05815 + 826773f commit 083a095

File tree

12 files changed

+4543
-109
lines changed

12 files changed

+4543
-109
lines changed

package-lock.json

+63-38
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
"react-router-dom": "^6.8.2",
2323
"react-router-hash-link": "^2.4.3",
2424
"react-scripts": "^5.0.1",
25+
"react-vertical-timeline-component": "^3.6.0",
2526
"web-vitals": "^2.1.4"
2627
},
2728
"scripts": {

src/components/Navbar.jsx

+21-13
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,26 @@ const Navbar = () => {
88
return (
99
<>
1010
<Box bg="#281b3d" w="100%" p={4} position="fixed" zIndex="sticky">
11-
<Flex
12-
align="left"
13-
overflowX="scroll"
14-
overflowY="hidden"
15-
style = {{scrollbarWidth: "none"}}
16-
sx={
17-
{
18-
'::-webkit-scrollbar': {display:'none'}
19-
}
20-
}
11+
<Flex
12+
align="left"
13+
overflowX="scroll"
14+
overflowY="hidden"
15+
style={{ scrollbarWidth: "none" }}
16+
sx={{
17+
"::-webkit-scrollbar": { display: "none" },
18+
}}
2119
>
2220
<ButtonGroup gap={3}>
2321
<HashLink smooth to="/#">
2422
<Button colorScheme="blackAlpha" size="lg">
2523
Home
2624
</Button>
2725
</HashLink>
26+
<HashLink smooth to="/#experience">
27+
<Button colorScheme="blackAlpha" size="lg">
28+
Experience
29+
</Button>{" "}
30+
</HashLink>
2831
<HashLink smooth to="/#skills">
2932
<Button colorScheme="blackAlpha" size="lg">
3033
Skills
@@ -42,12 +45,17 @@ const Navbar = () => {
4245
</HashLink>
4346
</ButtonGroup>
4447
<Spacer />
45-
<Link href="https://www.linkedin.com/in/rayantig/" isExternal mr={3} ml={6}>
46-
<FaLinkedin size={40} color="#0072b1"/>
48+
<Link
49+
href="https://www.linkedin.com/in/rayantig/"
50+
isExternal
51+
mr={3}
52+
ml={6}
53+
>
54+
<FaLinkedin size={40} color="#0072b1" />
4755
</Link>
4856
<Link href="https://github.com/tig-github" isExternal>
4957
<Box bg="white" borderRadius="full">
50-
<AiFillGithub size={40}/>
58+
<AiFillGithub size={40} />
5159
</Box>
5260
</Link>
5361
</Flex>

src/images/CTC.ico

58.2 KB
Binary file not shown.

0 commit comments

Comments
 (0)