All Projects → kremalicious → Portfolio

kremalicious / Portfolio

Licence: mit
👔 Portfolio thingy, built with Gatsby

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Portfolio

Gabriel Adorf Portfolio
Gabriel Adorf's personal website
Stars: ✭ 133 (-50%)
Mutual labels:  gatsby, portfolio, design
sanity-gatsby-portfolio
A Gatsby portfolio site powered by Sanity.io. Watch it get built live:
Stars: ✭ 16 (-93.98%)
Mutual labels:  portfolio, gatsby
site
🏞 My name dot com.
Stars: ✭ 54 (-79.7%)
Mutual labels:  portfolio, gatsby
gatsby-portfolio
Personal product design portfolio for Daniel Destefanis. Also available on Figma as an open-source design.
Stars: ✭ 32 (-87.97%)
Mutual labels:  portfolio, gatsby
React Portfolio Template
Modern React Portfolio Template (FREE)
Stars: ✭ 188 (-29.32%)
Mutual labels:  gatsby, portfolio
Narative.co
Narative builds brands, websites and products for growth-minded companies.
Stars: ✭ 226 (-15.04%)
Mutual labels:  gatsby, design
devFolio
Portfolio built with React (Gatsby) • Strapi • GraphQL 🎯
Stars: ✭ 25 (-90.6%)
Mutual labels:  portfolio, gatsby
Gatsby Theme Novela
Welcome to Novela, the simplest way to start publishing with Gatsby.
Stars: ✭ 1,647 (+519.17%)
Mutual labels:  gatsby, design
gatsby-london-after-midnight
A free, open source, image-concentric starter for GatsbyJS
Stars: ✭ 37 (-86.09%)
Mutual labels:  portfolio, gatsby
gatsby-portfolio
Portfolio / Personal Website - Built with Gatsby.js and Published at konstantin.digital
Stars: ✭ 23 (-91.35%)
Mutual labels:  portfolio, gatsby
gatsby-themes
A collection of open source, well designed, highly customizable and 100% free Gatsby themes for blazing fast sites. We are working on the next version of the Flex theme. See https://github.com/reflexjs/reflexjs
Stars: ✭ 296 (+11.28%)
Mutual labels:  portfolio, gatsby
Felipefialho.com
😺 My personal website
Stars: ✭ 177 (-33.46%)
Mutual labels:  gatsby, portfolio
Gatsby London
A free, open source, image-concentric starter for GatsbyJS
Stars: ✭ 137 (-48.5%)
Mutual labels:  gatsby, portfolio
Gatsby Starter Portfolio Jodie
Image-heavy photography portfolio with colorful accents & customizable pages. Includes adaptive image grids powered by CSS grid and automatic image integration into projects.
Stars: ✭ 249 (-6.39%)
Mutual labels:  gatsby, portfolio
norman-portfolio
Norman Nuthu's Portfolio
Stars: ✭ 16 (-93.98%)
Mutual labels:  portfolio, design
gatsby-theme-portfolio-minimal
A Gatsby Theme to create modern one-page portfolios with a clean yet expressive design.
Stars: ✭ 51 (-80.83%)
Mutual labels:  portfolio, gatsby
Aaronvandenberg.nl
⚛️ Web Developers portfolio build with Gatsby.js & React.js
Stars: ✭ 98 (-63.16%)
Mutual labels:  gatsby, portfolio
Gatsby Starter Portfolio Minimal
A Gatsby Starter to create a clean one-page portfolio with Markdown content.
Stars: ✭ 100 (-62.41%)
Mutual labels:  gatsby, portfolio
gatsby-personal-site
My personal site made with Gatsby
Stars: ✭ 31 (-88.35%)
Mutual labels:  portfolio, gatsby
raptori
Personal blog and portfolio by Joe McGrath
Stars: ✭ 33 (-87.59%)
Mutual labels:  portfolio, gatsby

👔 Portfolio thingy, built with Gatsby.

matthiaskretschmann.com


🎉 Features

The whole portfolio is a React-based single page app built with Gatsby v3.

Most metadata is powered by one resume.json file based on 🗂 JSON Resume, and one projects.yml file to define the displayed projects.

💍 One data file to rule all pages

All displayed project content is powered by one YAML file where all the portfolio's projects are defined. The project description itself is transformed from Markdown written inside the YAML file into HTML on build time.

Gatsby automatically creates pages from each item in that file utilizing the {ProjectsYaml.slug}.jsx template.

🗂 JSON Resume

Most site metadata and social profiles are defined in content/resume.json based on the JSON Resume standard and used throughout the site as a custom React hook. Additionally, a resume page is created under /resume.

If you want to know how, have a look at the respective components:

🐱 GitHub repositories

The open source section at the bottom of the front page shows selected GitHub repositories, sourced from GitHub.

On build time, all my public repositories are fetched from GitHub, then filtered against the ones defined in content/repos.yml, sorted by the last push date, and provided via the pageContext of the front page.

If you want to know how, have a look at the respective components:

💅 Theme switcher

Includes a theme switcher which allows user to toggle between a light and a dark theme. Switching between them also happens automatically based on user's system preferences.

If you want to know how, have a look at the respective components:

🏆 SEO component

Includes a SEO component which automatically switches all required meta tags for search engines, Twitter Cards, and Facebook OpenGraph tags based on the browsed route/page.

If you want to know how, have a look at the respective component:

📇 Client-side vCard creation

The Add to addressbook link in the footer automatically creates a downloadable vCard file on the client-side, based on data defined in content/meta.yml.

If you want to know how, have a look at the respective component:

💫 Page transitions

Includes mechanism for transitioning between route changes with full page transitions defined with react-pose. Mechanism stolen inspired by gatsby-universal.

If you want to know how, have a look at the respective components:

📈 Matomo (formerly Piwik) analytics tracking

Site sends usage statistics to my own Matomo installation. To make this work in Gatsby, I created and open sourced a plugin, gatsby-plugin-matomo, which is in use on this site.

🖼 Project images

All project images live under content/images and are automatically attached to each project based on the inclusion of the project's slug in their filenames.

All project images make use of the excellent gatsby-plugin-image plugin, working in tandem with gatsby-plugin-sharp and gatsby-transformer-sharp.

All together, Gatsby automatically generates all required image sizes for delivering responsible, responsive images to visitors, including lazy loading of all images. Also includes the intersection-observer polyfill to make lazy loading work properly in Safari.

All project images use one single component where one main GraphQL query fragment is defined, which then gets used throughout other GraphQL queries.

💎 Importing SVG assets

All SVG assets under src/images/ will be converted to React components with the help of gatsby-plugin-svgr. Makes use of SVGR so SVG assets can be imported like so:

import { ReactComponent as Logo } from './components/svg/Logo'

return <Logo />

🍬 Typekit component

Includes a component for adding the Typekit snippet.

If you want to know how, have a look at the respective component:

✨ Development

You can simply use Docker & Docker Compose or install and run dependencies on your local system.

git clone [email protected]:kremalicious/portfolio.git
cd portfolio/

# GATSBY_GITHUB_TOKEN is required for some parts
# See https://docs.github.com/en/github/authenticating-to-github/creating-a-personal-access-token
cp .env.sample .env
vi .env

# use Docker
docker-compose up

# or go with local system
npm i
npm start

🔮 Linting

ESlint, Prettier, and Stylelint are setup for all linting purposes:

npm run lint

To automatically format all code files:

npm run format
npm run format:css

👩‍🔬 Testing

Test suite is setup with Jest and react-testing-library.

To run all tests, including all linting tests:

npm test

Most test files live beside the respective component. Testing setup, fixtures, and mocks can be found in the ./tests/ folder.

🎈 Add a new project

To add a new project, run the following command. This adds a new item to the top of the projects.yml file, creating the title & slug from the argument:

npm run new -- "Hello"

Then continue modifying the new entry in content/projects.yml.

Finally, add as many images as needed with the file name format and put into content/images/:

SLUG-01.png
SLUG-02.png
SLUG-03.png
...

🚚 Deployment

Every branch or Pull Request is automatically deployed by Vercel with their GitHub integration, where the main branch is automatically aliased to matthiaskretschmann.com. A link to a preview deployment will appear under each Pull Request.

A backup deployment is also happening to a S3 bucket, triggered by pushes to main and executed via GitHub Actions. The deploy command simply calls the scripts/deploy-s3.sh script, syncing the contents of the public/ folder to S3:

npm run deploy:s3

Upon live deployment, deploy script also pings search engines. GitHub requires the following environment variables to be setup for successful deployments in the repository secrets:

  • AWS_ACCESS_KEY_ID
  • AWS_SECRET_ACCESS_KEY
  • AWS_DEFAULT_REGION

🏛 Licenses

© Copyright 2019 Matthias Kretschmann

All images and projects are plain ol' copyright, most displayed projects are subject to the copyright of their respective owners.

Don't care if you fork & play with it, but you're not allowed to publish anything from it as a whole without my written permission. Also please be aware, the combination of typography, colors & layout makes up my brand identity. So please don't just clone everything, but rather do a remix!

All the rest, like all code and documentation, is under:

The MIT License

Full MIT license text

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].