diff --git a/content/config.json b/content/config.json index f1d08be..643c257 100644 --- a/content/config.json +++ b/content/config.json @@ -19,10 +19,6 @@ "label": "Resume", "path": "/pages/resume" }, - { - "label": "Portfolio", - "path": "/pages/portfolio" - }, { "label": "Contact me", "path": "/pages/contacts" @@ -61,4 +57,4 @@ "phone": "+31614436562" } } -} \ No newline at end of file +} diff --git a/content/pages/portfolio/index.md b/content/pages/portfolio/index.md deleted file mode 100644 index d4a0836..0000000 --- a/content/pages/portfolio/index.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "Portfolio" -template: "page" - ---- - -Portfolio :O diff --git a/content/portfolio/linux-dotfiles/index.md b/content/portfolio/linux-dotfiles/index.md deleted file mode 100644 index 03bf5f2..0000000 --- a/content/portfolio/linux-dotfiles/index.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "My Dotfiles" -template: "portfolioItem" -description: "Rick van Lieshout's desktop configuration saved in config files" -socialImage: "/media/dotfiles3.png" ---- - -![i3wm layout with on the left a React code file open and on the right a terminal and system monitor](./media/dotfiles3.png "an example of my i3wm layout with some dummy apps") - -Dotfiles in Linux are a remarkable thing. Pretty much everything in Linux has a setting and most of those settings live in a config file. This is great for those using multiple computers because they don't have to fiddle with all the apps to get them "just the way I want them". No, simply include the right config file in the right spot and everything will work as expected. - -Some Linux people, me included, take this to a bit of an extreme. Everything in my system uses config files to set up and without my config files I'm horribly slow at performing even basic tasks. This is one of the main reasons why I included an "install.sh" script to take me from a fresh Arch Linux install straight through to a fully set up system! - -My dotfiles can be found on [GitHub](https://github.com/Mastermindzh/dotfiles). diff --git a/content/portfolio/linux-dotfiles/media/dotfiles3.png b/content/portfolio/linux-dotfiles/media/dotfiles3.png deleted file mode 100644 index 56d39d9..0000000 Binary files a/content/portfolio/linux-dotfiles/media/dotfiles3.png and /dev/null differ diff --git a/content/portfolio/react-cookie-consent/index.md b/content/portfolio/react-cookie-consent/index.md deleted file mode 100644 index 2db380a..0000000 --- a/content/portfolio/react-cookie-consent/index.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -title: "React cookie bar" -template: "portfolioItem" -description: "A small, simple and customizable cookie consent bar for use in React applications." -socialImage: "/media/light.png" ---- - -[Source code](https://github.com/Mastermindzh/react-cookie-consent) - [Storybook](https://mastermindzh.github.io/react-cookie-consent/) - -
-
cookie bar in light colors
-
cookie bar in dark colors
-
cookie bar on my old website
-
- -React-cookie-consent is a small, simple and customizable cookie consent bar for use in React applications. -The bar can be used in most React versions and related frameworks (Gatsby, Next). A React Native version is not available. -`react-cookie-consent` is highly customizable and actively maintained on Github.
-It's bundled up as an npm module so installing it is as easy as: - -```sh -npm install react-cookie-consent -``` - -I initially built react-cookie-consent because I couldn't find a decent cookie-bar to use for this website. After building it I decided to share it with the community so others don't have to create their own. diff --git a/content/portfolio/react-cookie-consent/media/dark.png b/content/portfolio/react-cookie-consent/media/dark.png deleted file mode 100644 index a2b60a4..0000000 Binary files a/content/portfolio/react-cookie-consent/media/dark.png and /dev/null differ diff --git a/content/portfolio/react-cookie-consent/media/light.png b/content/portfolio/react-cookie-consent/media/light.png deleted file mode 100644 index e8e0f2f..0000000 Binary files a/content/portfolio/react-cookie-consent/media/light.png and /dev/null differ diff --git a/content/portfolio/react-cookie-consent/media/old-site.png b/content/portfolio/react-cookie-consent/media/old-site.png deleted file mode 100644 index 8042382..0000000 Binary files a/content/portfolio/react-cookie-consent/media/old-site.png and /dev/null differ diff --git a/content/portfolio/rickvanlieshout.com/index.md b/content/portfolio/rickvanlieshout.com/index.md deleted file mode 100644 index 90c7869..0000000 --- a/content/portfolio/rickvanlieshout.com/index.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -title: "My ongoing personal website" -template: "portfolioItem" ---- - -## :) diff --git a/content/portfolio/tidal-hifi/index.md b/content/portfolio/tidal-hifi/index.md deleted file mode 100644 index 42496ac..0000000 --- a/content/portfolio/tidal-hifi/index.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -title: "Tidal Hi-Fi" -template: "portfolioItem" ---- - -## Why I had to make Tidal Hi-Fi diff --git a/content/portfolio/vanballegooij/index.md b/content/portfolio/vanballegooij/index.md deleted file mode 100644 index 1a1d40b..0000000 --- a/content/portfolio/vanballegooij/index.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -title: "Van Ballegooij" -template: "portfolioItem" ---- - -## :) diff --git a/internal/gatsby/create-pages.ts b/internal/gatsby/create-pages.ts index 8828304..0671e86 100644 --- a/internal/gatsby/create-pages.ts +++ b/internal/gatsby/create-pages.ts @@ -47,7 +47,6 @@ const createPages: GatsbyNode["createPages"] = async ({ graphql, actions }) => { if (node?.fields?.slug) { switch (node?.frontmatter?.template) { case "page": - case "portfolioItem": createPage({ path: node.fields.slug, component: pageTemplate,