Skip to content

Commit 708d84e

Browse files
committed
setting skils, ading posts page
1 parent 702d352 commit 708d84e

File tree

6 files changed

+45
-18
lines changed

6 files changed

+45
-18
lines changed

src/App.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import Experiences from "./pages/Experiences";
88
import Education from "./pages/Education";
99
import Portfolio from "./pages/Portfolio";
1010
import Home from "./pages/Home";
11+
import Blog from "./pages/Blog";
1112
import { Navigation } from "./components/Navigation";
1213

1314
const styles = {
@@ -29,6 +30,7 @@ function App() {
2930
<Route exact path="/experiences" element={<Experiences />} />
3031
<Route exact path="/education" element={<Education />} />
3132
<Route exact path="/portfolio" element={<Portfolio />} />
33+
<Route exact path="/blog" element={<Blog />} />
3234
</Routes>
3335
</Router>
3436
</Container>

src/components/Navigation.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,12 @@ export const Navigation = () => {
4242
>
4343
<Tab label="Portfolio" onClick={() => setSelected(3)} />
4444
</Link>
45+
{/* <Link
46+
style={{ textDecoration: "none", color: "white" }}
47+
to="/blog"
48+
>
49+
<Tab label="Blog" onClick={() => setSelected(3)} />
50+
</Link> */}
4551
</Tabs>
4652
</Box>
4753
);

src/components/PersonalInformation.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,26 +43,26 @@ const PersonalItem = (props) => {
4343
export const PersonalInformation = () => {
4444
return (
4545
<Grid container>
46-
<PersonalItem label="Age" value="26" icon={<Celebration />} />
47-
<PersonalItem label="Experience" value="+6 Years" icon={<Work />} />
46+
<PersonalItem label="Experience" value="+6 Years" icon={<Work color="primary"/>} />
47+
<PersonalItem label="Age" value="26" icon={<Celebration color="primary"/>} />
4848
<PersonalItem
4949
label="Location"
50-
icon={<LocationOn />}
50+
icon={<LocationOn color="primary"/>}
5151
element={
5252
<>
5353
Chiquinquirá - Boyacá (<ReactCountryFlag countryCode="CO" svg />)
5454
</>
5555
}
5656
/>
57-
<PersonalItem label="Email" value="[email protected]" icon={<Email />} />
57+
<PersonalItem label="Email" value="[email protected]" icon={<Email color="primary"/>} />
5858
<PersonalItem
5959
label="Phone"
6060
value={[<b>(+57)</b>, " 320 967 2421"]}
61-
icon={<Phone />}
61+
icon={<Phone color="primary"/>}
6262
/>
6363
<PersonalItem
6464
label="Languages"
65-
icon={<Language />}
65+
icon={<Language color="primary"/>}
6666
element={
6767
<>
6868
<ReactCountryFlag countryCode="US" svg /> &nbsp;

src/packages/material.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { createTheme } from "@mui/material";
33
export const theme = createTheme({
44
palette: {
55
primary: { main: "#019CAD" },
6+
secondary:{main:"#ad1201"}
67
},
78
components: {
89
},

src/pages/Blog.js

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import { Card, CardContent, Typography } from "@mui/material";
2+
3+
const Blog = () => {
4+
5+
return (
6+
<Card>
7+
<CardContent>
8+
<Typography color="primary" variant="h4">Personal Blog</Typography>
9+
</CardContent>
10+
11+
12+
</Card>
13+
);
14+
};
15+
16+
export default Blog;

src/pages/Home.js

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -71,26 +71,26 @@ const Home = () => {
7171
</Card>
7272
<br />
7373
<Container>
74-
<Grid container spacing={2}>
74+
<Grid container spacing={4}>
7575
<Grid item xs={12} sm={12} md={6}>
7676
<Typography variant="h4" color="primary.main">
7777
Skills
7878
</Typography>
7979
<ul>
8080
<li>
8181
Software Development (.NET, JavaScript)
82-
<Slider color="primary" value={95} />
83-
</li>
82+
<Slider color="primary" value={100} />
83+
</li>
8484
<li>
85-
Data Analyst (SQL, Power BI)
86-
<Slider color="primary" value={70} />
85+
DevOps Expert
86+
<Slider color="primary" value={95} />
8787
</li>
8888
<li>
89-
DevOps Expert
89+
Azure Expert
9090
<Slider color="primary" value={90} />
9191
</li>
9292
<li>
93-
Azure Expert
93+
Data Analyst (SQL, Power BI)
9494
<Slider color="primary" value={80} />
9595
</li>
9696
</ul>
@@ -101,13 +101,14 @@ const Home = () => {
101101
<Typography variant="h4" color="primary.main">
102102
About Me
103103
</Typography>
104-
<p style={{ textAlign: "justify" }}>
105-
Developer with experience in .NET and JavaScript technologies,
104+
<Typography variant="subtitle1" textAlign="justify">
105+
Developer with experience in .NET and JavaScript technologies,
106106
passionate about programming and software design. I am a dynamic
107107
person, I like to learn and work as a team, persistent in
108108
meeting goals and objectives that lead to the improvement of my
109109
life project and those around me.
110-
</p>
110+
</Typography>
111+
111112
</Grid>
112113

113114
<Grid item sm={12}>
@@ -118,8 +119,9 @@ const Home = () => {
118119
<Box
119120
sx={{
120121
display: "flex",
121-
flex: 1,
122-
justifyContent: "space-evenly",
122+
flexDirection:"row",
123+
alignItems:"center",
124+
justifyItems:"end"
123125
}}
124126
>
125127
<Chip label="Mountain Bike" icon={<PedalBike />} />

0 commit comments

Comments
 (0)