{-# LANGUAGE OverloadedStrings #-}
module Config.Author (
    authorName
  , authorJobTitle
  , authorGithub
  , authorTwitter
  , authorStackOverflow
  , authorDescriptionEn
  , authorDescriptionJa
) where

-- | 著者名
authorName :: String
authorName :: String
authorName = String
"Roki"

-- | 職業
authorJobTitle :: String
authorJobTitle :: String
authorJobTitle = String
"Software Engineer"

-- | GitHubアカウント
authorGithub :: String
authorGithub :: String
authorGithub = String
"falgon"

-- | Twitterアカウント
authorTwitter :: String
authorTwitter :: String
authorTwitter = String
"roki_r7"

-- | Stack OverflowユーザーID
authorStackOverflow :: String
authorStackOverflow :: String
authorStackOverflow = String
"8345717"

-- | 説明文(英語)
authorDescriptionEn :: String
authorDescriptionEn :: String
authorDescriptionEn = String
"Haskell enthusiast and Disney data analyst"

-- | 説明文(日本語)
authorDescriptionJa :: String
authorDescriptionJa :: String
authorDescriptionJa = String
"Haskell愛好家、Disneyデータアナリスト"