Skip to content

Commit 107a28f

Browse files
committed
chore: update dependencies to latest versions for improved performance and security
1 parent 08220ef commit 107a28f

File tree

8 files changed

+3662
-2217
lines changed

8 files changed

+3662
-2217
lines changed

.devcontainer/devcontainer.json

Lines changed: 32 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,33 @@
11
{
2-
"name": "Node.js",
3-
"image": "mcr.microsoft.com/devcontainers/javascript-node",
4-
"forwardPorts": [
5-
3000
6-
],
7-
"portsAttributes": {
8-
"3000": {
9-
"label": "Application",
10-
"onAutoForward": "notify"
11-
}
12-
},
13-
"customizations": {
14-
"vscode": {
15-
"extensions": [
16-
"ms-azuretools.vscode-docker",
17-
"dbaeumer.vscode-eslint",
18-
"donjayamanne.git-extension-pack",
19-
"GitHub.copilot",
20-
"GitHub.copilot-chat",
21-
"GitHub.vscode-pull-request-github",
22-
"codezombiech.gitignore",
23-
"DavidAnson.vscode-markdownlint",
24-
"christian-kohler.npm-intellisense",
25-
"ms-vscode-remote.remote-containers",
26-
"eamodio.gitlens",
27-
"VisualStudioExptTeam.vscodeintellicode",
28-
"VisualStudioExptTeam.intellicode-api-usage-examples"
29-
]
30-
}
31-
},
32-
"postCreateCommand": "npm install",
33-
"remoteUser": "root"
34-
}
2+
"name": "Node.js",
3+
"image": "mcr.microsoft.com/devcontainers/javascript-node",
4+
"forwardPorts": [3000],
5+
"portsAttributes": {
6+
"3000": {
7+
"label": "Application",
8+
"onAutoForward": "notify"
9+
}
10+
},
11+
"customizations": {
12+
"vscode": {
13+
"extensions": [
14+
"ms-azuretools.vscode-docker",
15+
"dbaeumer.vscode-eslint",
16+
"donjayamanne.git-extension-pack",
17+
"GitHub.copilot",
18+
"GitHub.copilot-chat",
19+
"GitHub.vscode-pull-request-github",
20+
"codezombiech.gitignore",
21+
"DavidAnson.vscode-markdownlint",
22+
"christian-kohler.npm-intellisense",
23+
"ms-vscode-remote.remote-containers",
24+
"eamodio.gitlens",
25+
"VisualStudioExptTeam.vscodeintellicode",
26+
"VisualStudioExptTeam.intellicode-api-usage-examples",
27+
"fill-labs.dependi"
28+
]
29+
}
30+
},
31+
"postCreateCommand": "npm install",
32+
"remoteUser": "root"
33+
}

app/experience/ExperienceMobile.jsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from "react";
22
import { Typography, Box, Divider, List, ListItem, Chip, ListItemText, Card, CardContent } from "@mui/material";
3-
import Grid from '@mui/material/Unstable_Grid2'
3+
import Grid from '@mui/material/Grid'
44
import { Icons } from '../icons'
55

66
export default function ExperienceMobile({ experiences }) {
@@ -11,13 +11,13 @@ export default function ExperienceMobile({ experiences }) {
1111
<Card key={idx} sx={{ my: 2 }} elevation={5}>
1212
<CardContent>
1313
<Grid container>
14-
<Grid xs={12}>
14+
<Grid size={{ xs: 12 }}>
1515
<Typography variant="h6">{info.role}</Typography>
1616
</Grid>
17-
<Grid xs={12} >
17+
<Grid size={{ xs: 12 }} >
1818
<Typography variant='subtitle1'>{info.company}</Typography>
1919
</Grid>
20-
<Grid xs={12}>
20+
<Grid size={{ xs: 12 }}>
2121
<Typography variant="subtitle2">{info.start.month}, {info.start.year} - {info.end.month}, {info.end.year}</Typography>
2222
</Grid>
2323
</Grid>

app/icons.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import {
22
SiCplusplus, SiNodedotjs, SiOpenjdk, SiJavascript, SiReact,
33
SiDocker, SiNeo4J, SiCisco, SiPandas, SiPython, SiScratch,
44
SiLabview, SiSlack, SiFigma, SiGoogledrive, SiGraphql,
5-
SiJunipernetworks, SiKubernetes, SiWindows, SiGit,
5+
SiJunipernetworks, SiKubernetes, SiGit,
66
SiLinux, SiFedora, SiPopos, SiKalilinux, SiRaspberrypi,
77
SiTruenas, SiUbuntu, SiHp, SiBootstrap, SiFirst, SiDevpost, SiMui, SiNokia, SiPhp,
88
SiWireguard, SiFlask, SiNumpy, SiArduino, SiHtml5, SiCss3, SiNextdotjs
@@ -32,7 +32,6 @@ export const Icons = {
3232
"graphql": <SiGraphql />,
3333
"juniper": <SiJunipernetworks />,
3434
"kubernetes": <SiKubernetes />,
35-
"windows server": <SiWindows />,
3635
"routeros": <TbRouter />,
3736
'teamwork': <Diversity3 />,
3837
"agile development": <Diversity2 />,
@@ -86,7 +85,6 @@ export const IconsLarge = {
8685
"graphql": <SiGraphql size={50} />,
8786
"juniper": <SiJunipernetworks size={50} />,
8887
"kubernetes": <SiKubernetes size={50} />,
89-
"windows server": <SiWindows size={50} />,
9088
"routeros": <TbRouter size={50} />,
9189
'teamwork': <Diversity3 size={50} />,
9290
"agile development": <Diversity2 size={50} />,

app/layout.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Inter } from 'next/font/google'
22
import { ThemeProvider, CssBaseline, Typography, Link, Box, Container } from '@mui/material'
3-
import Grid from '@mui/material/Unstable_Grid2'
3+
import Grid from '@mui/material/Grid'
44
import myTheme from './theme'
55
import './globals.css'
66
import NavBar from './navbar'
@@ -56,12 +56,12 @@ export default function RootLayout({ children }) {
5656
<Box sx={{ p: 3, mt: 'auto' }} component="footer">
5757
<Container maxWidth="xl">
5858
<Grid container spacing={2} columns={{ xs: 6, lg: 12 }}>
59-
<Grid xs={4} textAlign={'left'}>
59+
<Grid size={{ xs: 4 }} textAlign={'left'}>
6060
<Typography variant="body2" color="text.secondary">
6161
Bulit with <Link color="inherit" href="https://nextjs.org/">{Icons["nextjs"]} Next.js</Link> and <Link color="inherit" href="https://mui.com/">{Icons["material ui"]} Material UI</Link>
6262
</Typography>
6363
</Grid>
64-
<Grid xs={4} textAlign={'center'}>
64+
<Grid size={{ xs: 4 }} textAlign={'center'}>
6565
<Typography variant="body2" color="text.secondary">
6666
{'Copyright © '}
6767
<Link color="inherit" href="https://sayfullaheid.me/">
@@ -71,7 +71,7 @@ export default function RootLayout({ children }) {
7171
{'.'}
7272
</Typography>
7373
</Grid>
74-
<Grid xs={4} textAlign={'right'}>
74+
<Grid size={{ xs: 4 }} textAlign={'right'}>
7575
<Typography variant="body2" color="text.secondary">
7676
Icons from <Link color="inherit" href="https://react-icons.github.io/react-icons/">React Icons</Link>
7777
</Typography>

0 commit comments

Comments
 (0)