zephinzer / farewell

yes

Home Page:https://pensive-albattani-7782c8.netlify.app/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

farewell

Live here

Guidelines

  • We don't write tests
  • We push to master

Start local server

yarn start

Add new card

Add messages to src/messages/messages.js:

  • For normal text card with a header and a message:
    {
     type: "text",
     header: "some header",    // optional
     message: "some message"
    }
  • For a photo with alt text, first place it in the images folder and import it as a variable (e.g. someImg). Then:
    {
      type: "photo",
      image: someImg,
      alt: "alt text for the image",
    },
  • For photo card with message, first place it in the images folder and import it as a variable. Then:
    {
      header: "some header", // optional
      message: "some message",
      image: someImg,
      alt: "alt text for the image",
    }

About

yes

https://pensive-albattani-7782c8.netlify.app/


Languages

Language:JavaScript 81.5%Language:CSS 13.7%Language:HTML 4.8%