Skip to content

Let’s make your portfolio site from a buissiness card πŸ’³πŸ’¨

License

Notifications You must be signed in to change notification settings

jsjx1995/Cardfolio

Β 
Β 

Repository files navigation

γ‚’γ‚»γƒƒγƒˆ 7@2x.png

MIT License Tweet

Cardfolio! is a only one cardfolio site framework.

If you have any experience of React, you can easily create your own cardfolio site.

Wait, what's cardfolio site?? See below.

Yes, cardfolio site is portfolio site just like buisiness card!!

Why cardfoio site?

Cardfolio site's true worth is definitely seen when you hand over your buisiness card to someone.

Below image is my business card, imagine you receive this card.

(If you browse this site by mobile. You can access from here)

How was that?

You can make a great impression to receiver like you just felt πŸ˜„

Usage πŸ’³

You can create your own cardfolio site following steps.

  1. Fork this repository

  2. Install dependencies and start server.

    yarn
    gatsby develop

    Then check develop server is working by accessing localhost:8000

  3. Replace src/data/en.json with your data.

    Except some images, all data which are used in cardfolio are written in src/data/xx.json file.

    (default locale is en.json, if you want to change default locale or apply i18n see the section below)

    Let’s start from simple example, FrontSide.

    Edit src/data/en.json like this.

    {
      "frontSide": {
      "jobTitle": "{Your Job Title Here}",
      "name": "{Your name here}"
    }
    …
    }

    The top key name, frontSide indicates component name.

    And child key value pairs indicates where the value is used for in the component.

    Access to localhost:8000 to check changes are reflected like below.

You can also replace BackSide Data with the same way.
And replace profile.png with your profile image.
  1. Deploy your site. Any provider is ok, but I recommend to deply by netlify. Cuz Gatsby has great compatibility with Netlify. Details see here

  2. (Optional but strongly recommended) Create a your real buisiness card.

    Let's create your buisiness card to make people surprise!

    Make frontside of card just like cardforio site you implemented.

    In backside, you need to print QRCode indicates your cardfolio site.

    Create QRCode using QRCode gen service like this

    The QRCode url must include params fromQR=1. The parameter is used to detect access from QRCode or not.

    ex) https://yoursite.com?fromQR=1

    Replace your QRCode image with qr-code.png for fadeout animation.

  3. That’s all, You’ve created your original cardfolio site πŸŽ‰

    At last, don't forget to let me know your site, I want to add you site [example list] (https://github.com/kazuooooo/Cardfolio#examples-)

    (It’s ok to create PR to add you site to list)


CustomizationπŸ”§

Cardfolio! is created based on gatsby.js.

If you are a developer have used React before, you can easily customize your cardfolio site.

Cardfolio! have very simple components directories below.

β”œβ”€β”€ components
β”‚   β”œβ”€β”€ backSide.tsx. // backside of card
β”‚   β”œβ”€β”€ frontSide.tsx // frontside of card
β”‚   β”œβ”€β”€ header.tsx
β”‚   β”œβ”€β”€ menuItems. // menu items on backside
β”‚   β”‚   β”œβ”€β”€ career.tsx
β”‚   β”‚   β”œβ”€β”€ contact.tsx
β”‚   β”‚   β”œβ”€β”€ index.tsx
β”‚   β”‚   β”œβ”€β”€ menuItems.stories.tsx
β”‚   β”‚   β”œβ”€β”€ selfIntroduction.tsx
β”‚   β”‚   β”œβ”€β”€ skillset.tsx
β”‚   β”‚   └── works.tsx
β”‚   └── qrCodeBackSide.tsx // qr code back side for fade out

Want to customize visually 🎨

Just edit component you want to change.

Cardfolio! uses emotion styled component for styling.

Create custom menu item πŸ–Œ

Let's create a menu item to show some gif as a example.

  1. At first, define a component under menuItem directory.
import React from 'react'
import styled from '@emotion/styled'
import { graphql } from 'gatsby'

interface Props {
  data: {
    url: string,
    alt: string
  }
}

const Gif = (props: Props) => {
  const { url, alt } = props.data
  return (
    <Container>
      <img src={url} alt={alt} />
    </Container>
  )
}

export const dataQuery = graphql`
  fragment GifData on IndexJson {
    gif {
      menuItemTitle
      url
      alt
    }
  }
`

const Container = styled.div`
  padding: 24px;
`
export default Gif

The most important things is defining fragment query for this component.

export const dataQuery = graphql`
  fragment GifData on IndexJson {
    gif {
      menuItemTitle // ⭐️ this key required
      url
      alt
    }
  }
`

Every menu item components must receive these props as data props.

  1. To do that, add fragment to root index.tsx
export const query = graphql`
  query Index($locale: String) {
    file(name: { eq: $locale }, relativeDirectory: { eq: "index" }) {
      childIndexJson {
        ...SiteMetaData
        ...FrontSideData
        ...SelfIntroductionData
        ...WorksData
        ...ContactData
        ...CareerData
        ...SkillSetData
        ...GifData // ← βœ… add this line
      }
    }
  }
`

and add data to en.json file

{
  ...
  "gif": {
    "menuItemTitle": "Gif",
    "url": "https://media3.giphy.com/media/14miSV6VMiO7te/200.webp?cid=790b7611929de751e751f8d71de77feb138954710d6ba8b1&rid=200.webp",
    "alt": "alt"
  }
}
  1. At last, add gif to menuitem
import selfIntroductionComponent from './selfIntroduction'
import worksComponent from './works'
import contactComponent from './contact'
import careerComponent from './career'
import skillSetComponent from './skillset'
import Gif from './gif' // ← βœ… add this line

export enum MenuItemKey {
  SelfIntroduction = 'selfIntroduction',
  Works = 'works',
  Contact = 'contact',
  Career = 'career',
  SkillSet = 'skillSet',
  Gif = 'gif' // ← add this line
}

export default {
  [MenuItemKey.SelfIntroduction]: selfIntroductionComponent,
  [MenuItemKey.Works]: worksComponent,
  [MenuItemKey.Contact]: contactComponent,
  [MenuItemKey.Career]: careerComponent,
  [MenuItemKey.SkillSet]: skillSetComponent,
  [MenuItemKey.Gif]: Gif, // ← βœ… add this line
}

Then restart server, you will find Gif menu & see pretty wombat gif

localhost_8000.png

Complete detail see this commit


i18n 🌍

Add locale 🌎

Just add locale object to src/data/locales.js

module.exports = {
  // ADD ja
  ja: {
    path: 'ja',
    locale: 'Japanese',
  },
  en: {
    default: true,
    path: 'en',
    locale: 'English',
  },
}

then, make ja.json and add data for japanese

{
  "frontSide": {
    "jobTitle": "エンジニを",
    "name": "γ‚¦γ‚©γƒ³γƒγƒƒγƒˆε€ͺιƒŽ"
  },
  ...

Restart gatsby server to rebuild page,

then check japanese pages are created

localhost:8000 (English default)

localhost:8000/ja (Japanse)

Change default locale 🌏

Just change default key to target language

module.exports = {
  ja: {
    default: true, // Set default ja
    path: 'ja',
    locale: 'Japanese',
  },
  en: {
    path: 'en',
    locale: 'English',
  },
}

Then check default locale is changed

localhost:8000 (Japanese default)

localhost:8000/en (English)


Examples πŸ—ƒ

These are portfolio sites created by Cardfolio! (order by created day asc)

matsumotokazuya.io


Contribution πŸ‘¨β€πŸ’»

Any issues and pr is welcome :) If you find bug or some general function you want to add (for example new component, new theme design etc…), please make pull request by these step.

  1. Fork this repo
  2. Checkout master branch
  3. Make your change
  4. Create pull request

License ✍️

Cardfolio! is available under the MIT license.

About

Let’s make your portfolio site from a buissiness card πŸ’³πŸ’¨

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 78.8%
  • JavaScript 16.5%
  • CSS 4.2%
  • HTML 0.5%