Quick actions

cmd+k|ctrl+k

Navigation

Languages

Atomic Wings

Snippet info

Language

TypeScript

Visibility

public

Author

roy

Created

2017-12-04T12:06:29Z

Updated

2017-12-04T12:06:37Z

export const home = {
  backgroundColor: "color:light",
  titles: [
    {
      title: "swipe card to start order",
      fontFamily: "BebasNeue",
      color: "color:text",
      fontSize: "2.8em",
      top: "550px",
      left: "480px",
      zIndex: "5",
      onClick: "invoke:gotoDiningOption"
    },
    {
      title: "Authentic",
      fontFamily: "ThirstyRoughBlack",
      color: "color:primary",
      fontSize: "12em",
      opacity: "0.05",
      top: "-100px",
      left: "-150px",
      zIndex: -1
    },
    {
      title: "Awesome",
      fontFamily: "Homestead",
      color: "color:secondary",
      fontSize: "12em",
      opacity: "0.05",
      top: "60px",
      left: "-150px",
      zIndex: -1
    },
    {
      title: "Atomic",
      fontFamily: "Carton",
      color: "color:primary",
      fontSize: "12em",
      opacity: "0.05",
      top: "240px",
      left: "-150px",
      zIndex: -1
    }
  ],
  images: [
    {
      src: "image:home/burger.png",
      width: "500px",
      top: "50px",
      right: "-50px"
    },
    {
      src: "image:home/wings.png",
      width: "400px",
      top: "520px",
      left: "-10px"
    },
    {
      src: "image:home/credit-cards.png",
      width: "250px",
      top: "600px",
      right: "250px"
    },
    {
      src: "image:common/logo.png",
      width: "400px",
      top: "50px",
      left: "50px"
    }
  ]
}
INFO