index.js 695 Bytes
var express = require('express');
var router = express.Router();

/* GET home page. */
router.get('/', function(req, res, next) {
  res.render('index', {
    title: 'Kakao Bot',
    subtitle: "카카오봇 사용법",
    image1: "/images/instruction1.png",
    image2: "/images/instruction2.png",
    image3: "/images/instruction3.png",
    instruction1: "1. 친구 탭에서 동그라미 표시된 돋보기모양의 검색 버튼을 누르세요.",
    instruction2: "2. '정민혁_번역,트랜드검색수치_봇' 을 검색합니다",
    instruction3: "3. 친구 추가를 한 뒤 채팅하기를 눌러 채팅방을 열고 이용을 시작합니다!"
  });
});

module.exports = router;