add @kichiyaki/roboto, update technologies that I used in my projects

This commit is contained in:
Dawid Wysokiński 2021-01-10 20:13:45 +01:00
parent 3253249f9d
commit 07c3ce4649
8 changed files with 27 additions and 28 deletions

View File

@ -1,7 +1 @@
/** import "@kichiyaki/roboto"
* Implement Gatsby's Browser APIs in this file.
*
* See: https://www.gatsbyjs.org/docs/browser-apis/
*/
// You can delete this file if you're not using it

View File

@ -5,6 +5,7 @@
"version": "0.1.0", "version": "0.1.0",
"author": "Dawid Wysokiński <xyztojajestem@gmail.com>", "author": "Dawid Wysokiński <xyztojajestem@gmail.com>",
"dependencies": { "dependencies": {
"@kichiyaki/roboto": "^1.0.0",
"@material-ui/core": "^4.11.0", "@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1", "@material-ui/icons": "^4.9.1",
"@material-ui/styles": "^4.10.0", "@material-ui/styles": "^4.10.0",

View File

@ -3,7 +3,6 @@ import PropTypes from "prop-types"
import classnames from "classnames" import classnames from "classnames"
import { makeStyles } from "@material-ui/core/styles" import { makeStyles } from "@material-ui/core/styles"
import { Helmet } from "react-helmet"
import { CssBaseline } from "@material-ui/core" import { CssBaseline } from "@material-ui/core"
import Navbar from "./Navbar" import Navbar from "./Navbar"
import Footer from "./Footer" import Footer from "./Footer"
@ -27,12 +26,6 @@ const Layout = ({
return ( return (
<Fragment> <Fragment>
<Helmet>
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap"
rel="stylesheet"
></link>
</Helmet>
{showNavbar && <Navbar {...navbarProps} />} {showNavbar && <Navbar {...navbarProps} />}
<main className={classnames(className, classes.main)}>{children}</main> <main className={classnames(className, classes.main)}>{children}</main>
{showFooter && <Footer />} {showFooter && <Footer />}

View File

@ -55,7 +55,7 @@ const useStyles = makeStyles(theme => ({
function Navbar({ className, ...rest }) { function Navbar({ className, ...rest }) {
const classes = useStyles() const classes = useStyles()
const handleLinkClick = useSmoothScroll() const handleClickLink = useSmoothScroll()
return ( return (
<AppBar <AppBar
@ -77,7 +77,7 @@ function Navbar({ className, ...rest }) {
title="Start" title="Start"
color="inherit" color="inherit"
href={"#" + HEADER_ID} href={"#" + HEADER_ID}
onClick={handleLinkClick(HEADER_ID)} onClick={handleClickLink(HEADER_ID)}
> >
Start Start
</Link> </Link>
@ -85,7 +85,7 @@ function Navbar({ className, ...rest }) {
title="Projekty" title="Projekty"
color="inherit" color="inherit"
href={"#" + PROJECTS_SECTION_ID} href={"#" + PROJECTS_SECTION_ID}
onClick={handleLinkClick(PROJECTS_SECTION_ID)} onClick={handleClickLink(PROJECTS_SECTION_ID)}
> >
Projekty Projekty
</Link> </Link>
@ -93,7 +93,7 @@ function Navbar({ className, ...rest }) {
title="Kontakt" title="Kontakt"
color="inherit" color="inherit"
href={"#" + CONTACT_SECTION_ID} href={"#" + CONTACT_SECTION_ID}
onClick={handleLinkClick(CONTACT_SECTION_ID)} onClick={handleClickLink(CONTACT_SECTION_ID)}
> >
Kontakt Kontakt
</Link> </Link>

View File

@ -1,7 +1,7 @@
import React from "react" import React from "react"
import PropTypes from "prop-types" import PropTypes from "prop-types"
import classnames from "classnames" import classnames from "classnames"
import noImage from "./noImage.jpg" import notFound from "./not-found.jpg"
import { makeStyles } from "@material-ui/core/styles" import { makeStyles } from "@material-ui/core/styles"
import { import {
@ -141,7 +141,7 @@ Project.defaultProps = {
technologies: [], technologies: [],
github: "", github: "",
live: "", live: "",
img: noImage, img: notFound,
} }
Project.propTypes = { Project.propTypes = {

View File

@ -91,6 +91,7 @@ const projects = [
description: description:
"Serwis zawierający różne pomoce dla graczy plemion, zaczynając od bota na Discorda i przeróżnych skryptów, kończąc na ogólnodostępnym API z danymi serwerów plemion (informacje o graczach, wioskach, plemionach, zmianach plemion itd.).", "Serwis zawierający różne pomoce dla graczy plemion, zaczynając od bota na Discorda i przeróżnych skryptów, kończąc na ogólnodostępnym API z danymi serwerów plemion (informacje o graczach, wioskach, plemionach, zmianach plemion itd.).",
technologies: [ technologies: [
"GraphQL",
"Golang", "Golang",
"gqlgen", "gqlgen",
"Gin", "Gin",
@ -98,9 +99,13 @@ const projects = [
"robfig/cron", "robfig/cron",
"Redis", "Redis",
"PostgreSQL", "PostgreSQL",
"TypeScript",
"React", "React",
"Gatsby", "Gatsby",
"Material-UI", "Material-UI",
"Create React App",
"Apollo",
"Parcel",
"Docker", "Docker",
"Traefik", "Traefik",
], ],
@ -113,14 +118,15 @@ const projects = [
description: description:
"Aplikacja mobilna oraz webowa przeznaczona do wykonywania testów zawodowych.", "Aplikacja mobilna oraz webowa przeznaczona do wykonywania testów zawodowych.",
technologies: [ technologies: [
"React", "GraphQL",
"Next.JS",
"Material-UI",
"Apollo Client",
"Golang", "Golang",
"gqlgen", "gqlgen",
"Echo", "Echo",
"PostgreSQL", "PostgreSQL",
"React",
"Next.JS",
"Material-UI",
"Apollo",
"React Native", "React Native",
], ],
github: "", github: "",
@ -137,7 +143,7 @@ const projects = [
}, },
{ {
title: "dawid-wysokinski.pl", title: "dawid-wysokinski.pl",
description: "Moje portfolio.", description: "",
technologies: ["React", "Gatsby", "Material-UI"], technologies: ["React", "Gatsby", "Material-UI"],
github: "https://github.com/Kichiyaki/dawid-wysokinski.pl", github: "https://github.com/Kichiyaki/dawid-wysokinski.pl",
live: "https://dawid-wysokinski.pl", live: "https://dawid-wysokinski.pl",
@ -148,19 +154,19 @@ const projects = [
description: description:
"Program służący do automatycznego przeglądania ogłoszeń na portalu olx.", "Program służący do automatycznego przeglądania ogłoszeń na portalu olx.",
technologies: [ technologies: [
"React",
"Material-UI",
"Golang", "Golang",
"Colly", "Colly",
"SQLite3", "SQLite3",
"Echo", "Echo",
"React",
"Material-UI",
], ],
fluid: "projects/olx.png", fluid: "projects/olx.png",
github: "https://github.com/Kichiyaki/olx-crawler", github: "https://github.com/Kichiyaki/olx-crawler",
}, },
{ {
title: "Instaling.pl Bot", title: "Instaling.pl Bot",
description: "Bot automatycznie wykonujący sesje na stronie instaling.pl.", description: "Bot automatycznie wykonujący testy na stronie instaling.pl.",
technologies: ["Golang", "Lorca"], technologies: ["Golang", "Lorca"],
fluid: "projects/instaling.png", fluid: "projects/instaling.png",
github: "https://github.com/Kichiyaki/Instaling-Bot", github: "https://github.com/Kichiyaki/Instaling-Bot",

View File

Before

Width:  |  Height:  |  Size: 66 KiB

After

Width:  |  Height:  |  Size: 66 KiB

View File

@ -1383,6 +1383,11 @@
core-js "^3.4.1" core-js "^3.4.1"
regenerator-runtime "^0.13.3" regenerator-runtime "^0.13.3"
"@kichiyaki/roboto@^1.0.0":
version "1.0.0"
resolved "https://registry.yarnpkg.com/@kichiyaki/roboto/-/roboto-1.0.0.tgz#6f5dfb40e2423940588946c952490b123ca8088b"
integrity sha512-4pfkzXOqtSWZvvkA6jI30h+y2vDOvhEavYo4O32C98jPk2zqIiFwd4SwiiFe9xzjQsPURqO89rUTZlChU255bQ==
"@material-ui/core@^4.11.0": "@material-ui/core@^4.11.0":
version "4.11.0" version "4.11.0"
resolved "https://registry.yarnpkg.com/@material-ui/core/-/core-4.11.0.tgz#b69b26e4553c9e53f2bfaf1053e216a0af9be15a" resolved "https://registry.yarnpkg.com/@material-ui/core/-/core-4.11.0.tgz#b69b26e4553c9e53f2bfaf1053e216a0af9be15a"