diff --git a/Dockerfile b/Dockerfile index a3b3bf5..6723740 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,6 @@ FROM node:14.19.2-alpine as build-deps -ARG PLAUSIBLE_CUSTOM_DOMAIN="" - -ENV PLAUSIBLE_CUSTOM_DOMAIN=$PLAUSIBLE_CUSTOM_DOMAIN \ - NODE_ENV=production +ENV NODE_ENV=production RUN apk --no-cache add shadow \ gcc \ diff --git a/src/features/IndexPage/components/Portfolio/Portfolio.js b/src/features/IndexPage/components/Portfolio/Portfolio.js index d92ade3..0aab72d 100644 --- a/src/features/IndexPage/components/Portfolio/Portfolio.js +++ b/src/features/IndexPage/components/Portfolio/Portfolio.js @@ -7,27 +7,6 @@ import { Typography, Container, Grid } from '@material-ui/core'; import Section, { BG_COLOR } from '@components/Section'; import Project from './Project'; -const useStyles = makeStyles(theme => ({ - section: { - transform: 'skewY(-7deg)', - padding: '8rem 0', - margin: '6rem 0', - '& > *': { - transform: 'skewY(7deg)', - }, - [theme.breakpoints.down('sm')]: { - margin: '3rem 0', - }, - }, - gridItem: { - [theme.breakpoints.up(750)]: { - flexGrow: 0, - flexBasis: '50%', - maxWidth: '50%', - }, - }, -})); - export const SECTION_ID = 'portfolio'; function Portfolio() { @@ -90,4 +69,25 @@ function Portfolio() { ); } +const useStyles = makeStyles(theme => ({ + section: { + transform: 'skewY(-7deg)', + padding: '8rem 0', + margin: '6rem 0', + '& > *': { + transform: 'skewY(7deg)', + }, + [theme.breakpoints.down('sm')]: { + margin: '3rem 0', + }, + }, + gridItem: { + [theme.breakpoints.up(750)]: { + flexGrow: 0, + flexBasis: '50%', + maxWidth: '50%', + }, + }, +})); + export default Portfolio; diff --git a/src/features/IndexPage/components/Portfolio/Project.js b/src/features/IndexPage/components/Portfolio/Project.js index a7f41f4..41158cd 100644 --- a/src/features/IndexPage/components/Portfolio/Project.js +++ b/src/features/IndexPage/components/Portfolio/Project.js @@ -14,15 +14,7 @@ import { } from '@material-ui/core'; import BackgroundImage from 'gatsby-background-image'; -function Project({ - title, - description, - technologies, - github, - live, - img, - fluid, -}) { +function Project({ title, description, technologies, git, live, img, fluid }) { const classes = useStyles(); return ( @@ -51,10 +43,10 @@ function Project({ })}
- {github && ( - + {git && ( + )} diff --git a/src/features/IndexPage/components/Portfolio/projects.js b/src/features/IndexPage/components/Portfolio/projects.js index e9c7743..4cb4a70 100644 --- a/src/features/IndexPage/components/Portfolio/projects.js +++ b/src/features/IndexPage/components/Portfolio/projects.js @@ -21,7 +21,7 @@ const projects = [ 'Docker', 'Traefik', ], - github: 'https://github.com/tribalwarshelp', + git: 'https://gitea.dwysokinski.me/twhelp', fluid: 'projects/twhelp.png', }, { @@ -45,13 +45,13 @@ const projects = [ ], fluid: 'projects/zdam.png', live: 'https://zdamegzaminzawodowy.pl/', - github: 'https://github.com/zdam-egzamin-zawodowy', + git: 'https://github.com/zdam-egzamin-zawodowy', }, { title: 'dwysokinski.me', description: '', technologies: ['React', 'Gatsby', 'Material-UI'], - github: 'https://github.com/Kichiyaki/dwysokinski.me', + git: 'https://gitea.dwysokinski.me/Kichiyaki/dwysokinski.me', live: 'https://dwysokinski.me', fluid: 'projects/dw.png', }, diff --git a/src/features/IndexPage/components/Technologies/Technologies.js b/src/features/IndexPage/components/Technologies/Technologies.js index a17531c..2de908a 100644 --- a/src/features/IndexPage/components/Technologies/Technologies.js +++ b/src/features/IndexPage/components/Technologies/Technologies.js @@ -43,6 +43,10 @@ function Technologies() { Technologies / tools I use
+
+
+ +
-
- -
-
+
-
-
-
-
- -
-
-
- -
-
-
- -
-
-
- -
-
-
- -
- -
-
- -
-
-
- -
-
-
- -
-
-
-
@@ -163,12 +102,73 @@ function Technologies() { />
+
+ +
+
+
+ +
+
+
+ +
+
+
+ +
+ +
+
+ +
+
+
+
+ +
+
+
+ +
+
+
+ +
+
+
+ +
diff --git a/src/features/IndexPage/components/Technologies/Technology.js b/src/features/IndexPage/components/Technologies/Technology.js index ca9ef3c..8916b7b 100644 --- a/src/features/IndexPage/components/Technologies/Technology.js +++ b/src/features/IndexPage/components/Technologies/Technology.js @@ -4,6 +4,16 @@ import { makeStyles } from '@material-ui/core/styles'; import { Typography, Paper } from '@material-ui/core'; import Image from 'gatsby-image'; +function Technology({ fixed, name }) { + const classes = useStyles(); + return ( + + + {name} + + ); +} + const useStyles = makeStyles(theme => ({ paper: { display: 'flex', @@ -18,14 +28,4 @@ const useStyles = makeStyles(theme => ({ }, })); -function Technology({ fixed, name }) { - const classes = useStyles(); - return ( - - - {name} - - ); -} - export default Technology; diff --git a/src/images/technologies/ansible.png b/src/images/technologies/ansible.png new file mode 100644 index 0000000..45d92f8 Binary files /dev/null and b/src/images/technologies/ansible.png differ diff --git a/src/images/technologies/express.png b/src/images/technologies/express.png deleted file mode 100644 index 483abd0..0000000 Binary files a/src/images/technologies/express.png and /dev/null differ diff --git a/src/images/technologies/gatsby.png b/src/images/technologies/gatsby.png deleted file mode 100644 index 3fc51d8..0000000 Binary files a/src/images/technologies/gatsby.png and /dev/null differ diff --git a/src/images/technologies/ghost.png b/src/images/technologies/ghost.png deleted file mode 100644 index e61db37..0000000 Binary files a/src/images/technologies/ghost.png and /dev/null differ diff --git a/src/images/technologies/git.png b/src/images/technologies/git.png new file mode 100644 index 0000000..51f4ae5 Binary files /dev/null and b/src/images/technologies/git.png differ diff --git a/src/images/technologies/golang.png b/src/images/technologies/go.png similarity index 100% rename from src/images/technologies/golang.png rename to src/images/technologies/go.png diff --git a/src/images/technologies/gqlgen.png b/src/images/technologies/gqlgen.png deleted file mode 100644 index b015641..0000000 Binary files a/src/images/technologies/gqlgen.png and /dev/null differ diff --git a/src/images/technologies/grafana.jpg b/src/images/technologies/grafana.jpg new file mode 100644 index 0000000..a0c4430 Binary files /dev/null and b/src/images/technologies/grafana.jpg differ diff --git a/src/images/technologies/jaeger.png b/src/images/technologies/jaeger.png new file mode 100644 index 0000000..2851185 Binary files /dev/null and b/src/images/technologies/jaeger.png differ diff --git a/src/images/technologies/jaeger.svg b/src/images/technologies/jaeger.svg new file mode 100644 index 0000000..86fb00e --- /dev/null +++ b/src/images/technologies/jaeger.svg @@ -0,0 +1,211 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/images/technologies/jest.png b/src/images/technologies/jest.png deleted file mode 100644 index a03db7e..0000000 Binary files a/src/images/technologies/jest.png and /dev/null differ diff --git a/src/images/technologies/kubernetes.png b/src/images/technologies/kubernetes.png new file mode 100644 index 0000000..9e446c4 Binary files /dev/null and b/src/images/technologies/kubernetes.png differ diff --git a/src/images/technologies/nest.png b/src/images/technologies/nest.png deleted file mode 100644 index c1ebd5c..0000000 Binary files a/src/images/technologies/nest.png and /dev/null differ diff --git a/src/images/technologies/nextjs.png b/src/images/technologies/nextjs.png deleted file mode 100644 index bf8ffbc..0000000 Binary files a/src/images/technologies/nextjs.png and /dev/null differ diff --git a/src/images/technologies/prometheus.png b/src/images/technologies/prometheus.png new file mode 100644 index 0000000..173ef06 Binary files /dev/null and b/src/images/technologies/prometheus.png differ diff --git a/src/images/technologies/redis.png b/src/images/technologies/redis.png new file mode 100644 index 0000000..7b43004 Binary files /dev/null and b/src/images/technologies/redis.png differ diff --git a/src/images/technologies/rmq.png b/src/images/technologies/rmq.png new file mode 100644 index 0000000..a482293 Binary files /dev/null and b/src/images/technologies/rmq.png differ diff --git a/src/images/technologies/scss.png b/src/images/technologies/scss.png deleted file mode 100644 index 61c4025..0000000 Binary files a/src/images/technologies/scss.png and /dev/null differ diff --git a/src/images/technologies/sentry.png b/src/images/technologies/sentry.png new file mode 100644 index 0000000..d282c3b Binary files /dev/null and b/src/images/technologies/sentry.png differ diff --git a/src/images/technologies/strapi.jpeg b/src/images/technologies/strapi.jpeg deleted file mode 100644 index a149794..0000000 Binary files a/src/images/technologies/strapi.jpeg and /dev/null differ diff --git a/src/images/technologies/strapi.png b/src/images/technologies/strapi.png deleted file mode 100644 index 4bb6ce4..0000000 Binary files a/src/images/technologies/strapi.png and /dev/null differ diff --git a/src/images/technologies/terraform.png b/src/images/technologies/terraform.png new file mode 100644 index 0000000..f19f666 Binary files /dev/null and b/src/images/technologies/terraform.png differ diff --git a/src/images/technologies/testinglibrary.png b/src/images/technologies/testinglibrary.png deleted file mode 100644 index db9d02b..0000000 Binary files a/src/images/technologies/testinglibrary.png and /dev/null differ diff --git a/src/images/technologies/webpack.png b/src/images/technologies/webpack.png deleted file mode 100644 index b74b839..0000000 Binary files a/src/images/technologies/webpack.png and /dev/null differ