Skip to content

Safi1012/Portfolio-Generator

Repository files navigation

Portfolio Generator


Crafted

Display your projects in a simple and beautiful way.


Motivation

I created this Portfolio Generator to satisfy the need to display my own projects in an easy and beautiful way. You can see my own generated portfolio here: https://crafted-link.netlify.app/.


Screenshots

Here you can see four demo portfolios which were created by using this portfolio generator.

DayNight Light
Screenshot 2019-07-01 at 20 41 24 Screenshot 2019-07-01 at 20 02 23
Ocean Dark
Screenshot 2019-08-06 at 19 25 25 Screenshot 2019-07-01 at 20 01 41

Tech Stack


Features

What makes this project stand out, are the easy and yet powerful options to generate a personalized portfolio. This project offers the following features:

  • Custom themes
  • Pre-configured themes (daynight, light, ocean, and dark)
  • Gradient and patterns option
  • Top Lighthouse score
  • Custom font support
  • Responsive
  • Offline support
  • Installable (PWA)

Installation

To generate your own personalized portfolio follow these steps:

1. Clone or Fork This Repository

git clone https://github.com/Safi1012/Portfolio-Generator.git

2. Install Dependencies

npm install

3. Start Development Server

npm run serve

4. Add Your Own Portofolio Data.

Open the ./src/config/setup.yml file and adjust the settings to fit your needs. Checkout the API Reference section further below for more information.

5. Build Production

npm run build

6. Deploy Your Production Build

Deploy your generated production build folder dist/ to your favorite hosting provider. Some of the better known are: GitHub Pages, Netlify, Zeit Now, and Surge. Detailed explanations on how to deploy a static site can be found in the docs of the respective hosting provider.


API Reference

The portfolio generator can be configured by adjusting the ./src/config/setup.yml file. Below you see what each option means and does:

Parameter Explanation Input Type Required
portfolio Specifies the title of the generated portfolio. string yes
theme The theme name which should be applied. Currently there are four themes available (daynight, light, ocean, and dark).

You can also Create Your Own Theme!
string yes
patternImage Choose which pattern image should be applied to your background. You can select one of the 26 included images under ./public/assets/images/patterns/.

A list of all available pattern images can be found further below. Just choose an image and enter its filename e.g. circuit.svg. If you leave this field empty you will get a gradient as background. The gradient colors are taken from the selected theme.
string optional
socialMedia Defines the social media icons to show up in your header. Each entry consists of name, url, and image.

- name will be used as aria-label on the icon to increase the accessibility of the generated site.
- url link to your social media profile (e.g. GitHub, Twitter).
- image specifies which social media icon to display. Just enter the icons filename, e.g. github.svg. Remember to first add your icon to ./public/assets/images/social-media/ or select one of the already included Social-Media icons.
array yes
projects Add your own projects. Each entry consists of name, url, backgroundColor, and image.

- name will appear below the image.
- url link to your project.
- backgroundColor hex color with a prefixed backlash, for example \#2BB0ED. The backgroundColor is optional because it will only take effect if you use an alpha transparent image.
- image defines the projects logo. Just enter the images name with its extension, e.g. shrink-me.svg. Remember to first add your image to ./public/assets/images/projects/.
array yes
terms If you want / need that your portfolio site contains a terms of service page, you can pass the name and website parameter to the terms object. If left empty, no terms page will be generated. You may also edit the ./src/views/Terms.vue file to contain your own self written terms. string optional
privacy If you want / need that your portfolio site contains a privacy page, you can pass the name, address, mail, and phone parameter to the privacy object. If left empty, no privacy page will be generated. You may also edit the ./src/views/Privacy.vue file to contain your own self written privacy. string optional

Example Configuration

Below you see an example configuration of the ./src/config/setup.yml file:

portfolio: Filipe Santos Correa

theme: light
patternImage: circuit.svg

socialMedia:
  - name: GitHub
    url: https://github.com/Safi1012
    image: github.svg

  - name: Twitter
    url: https://twitter.com/Safi1012
    image: twitter.svg

projects:
  - name: Shrink Me
    url: https://shrinkme.app
    image: shrink-me.svg
    backgroundColor: \#FEFEFE

  - name: About Me
    url: https://filipesantoscorrea.com
    image: about-me.svg

terms:
  name: Filipe Santos Correa
  website: https://crafted-link.netlify.app

privacy:
  name: Filipe Santos Correa
  address: Karlsruhe, Germany
  mail: mail@filipesantoscorrea.com
  phone: +1-123-456-7890

List of Patterns and Social-Media icons

Here you see a list of already provided patterns and social-media icons to choose from when configuring the ./src/config/setup.yml file:

Patterns

anchors.svg | bathroom.svg | brick.svg | bubbles.svg | circles.svg | circuit.svg | cogs.svg | dots.svg | food.svg | formal.svg | glamorous.svg | hideout.svg | jigsaw.svg | 
leaf.svg | overcast.svg | overlapping-circles.svg | plus.svg | shapes.svg | skulls.svg | star.svg | stripes.svg | textures.svg | tic-tac-toe.svg | triangles.svg | wiggle.svg

Social-Media

facebook.svg | github.svg | gitlab.svg | linkedin.svg | twitter.svg | xing.svg

SEO Configuration

You should also adjust your sites meta data (important for SEO) before deploying your portfolio site. This can be done by adjusting the options in the .env file (located in the root folder):

#
# Site meta data (important for SEO)
#
VUE_APP_TITLE = "Your site title..."
VUE_APP_DESCRIPTION = "Your site description..."
VUE_APP_NAME = "Your site name..."
VUE_APP_CANONICAL_SITE = "https://..."

Create Your Own Theme

You can also create your own individual theme. Just open the ./src/styles/themes.css file and create a new CSS class e.g. .rainbow. Next, copy the contents of an already existing theme and paste it inside of your newly created CSS class .rainbow. Now you can adjust the settings of your theme (colors and fonts) to fit your needs. Finally, open the ./src/config/setup.yml and load your new theme rainbow by adjusting the theme parameter.

PS: I'm always happy to receive pull requests with new themes 🤗


Install New Fonts

You may also install new additional fonts that you desire. To do so, create a new folder under ./public/assets/fonts/ and copy your font there. Next, create a css font-face by adjusting the ./src/styles/typography.css file. Ultimately, begin using your newly installed font in your theme.

One service which I highly recommend using when using Google Fonts is the google-webfonts-helper. The google-webfonts-helper site help you to download all files of a selected font and also generated the CSS @font-face.


Contribute

Just submit an issue, be it a bug report or a feature request. I'm also always happy to accept new pull requests.


Credits

This project uses Open Source components. I acknowledge and am grateful to these developers and designers for their contributions to the open source community!


License

MIT © Filipe Santos Correa

About

Display your projects in a simple and beautiful way.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published