Skip to content

Commit

Permalink
tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
medAzizRezgui committed Oct 26, 2022
1 parent 8b3917e commit 9bd8758
Show file tree
Hide file tree
Showing 10 changed files with 330 additions and 28 deletions.
216 changes: 216 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
},
"dependencies": {
"@chakra-ui/react": "^2.3.6",
"@tanstack/react-query": "^4.13.0",
"axios": "^1.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.6.0",
Expand Down
2 changes: 2 additions & 0 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import SocialBar from "./components/SocialBar";
import Hero from "./components/Hero";
import About from "./components/About";
import Experiences from "./components/Experiences";
import Projects from "./components/Projects";

function App() {
return (
Expand All @@ -15,6 +16,7 @@ function App() {
<Hero />
<About />
<Experiences />
<Projects />
</Container>
);
}
Expand Down
1 change: 1 addition & 0 deletions src/components/About.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ export default function About() {
const [index, setIndex] = useState(0);
return (
<Box
id="about"
w="60%"
mx="auto"
h="100vh"
Expand Down
6 changes: 3 additions & 3 deletions src/components/ExpTabs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export default function ExpTabs({ tab, setTab }: Props) {
bg={tab === 0 ? "whiteAlpha.200" : "none"}
justifyContent={"center"}
>
<Text color={tab === 0 ? "themeCyan" : "gray.400"}>Work 1</Text>
<Text color={tab === 0 ? "themeCyan" : "gray.400"}>Freelance</Text>
</HStack>
<HStack
bg={tab === 1 ? "whiteAlpha.200" : "none"}
Expand All @@ -42,7 +42,7 @@ export default function ExpTabs({ tab, setTab }: Props) {
cursor={"pointer"}
onClick={() => setTab(1)}
>
<Text color={tab === 1 ? "themeCyan" : "gray.400"}>Work 2</Text>
<Text color={tab === 1 ? "themeCyan" : "gray.400"}>Internship</Text>
</HStack>
<HStack
bg={tab === 2 ? "whiteAlpha.200" : "none"}
Expand All @@ -52,7 +52,7 @@ export default function ExpTabs({ tab, setTab }: Props) {
cursor={"pointer"}
onClick={() => setTab(2)}
>
<Text color={tab === 2 ? "themeCyan" : "gray.400"}>Work 3</Text>
<Text color={tab === 2 ? "themeCyan" : "gray.400"}>Internship</Text>
</HStack>
<HStack
cursor={"pointer"}
Expand Down
Loading

0 comments on commit 9bd8758

Please sign in to comment.