mirror of
https://github.com/avinal/avinal.github.io.git
synced 2026-07-04 07:40:09 +05:30
e6753e137d
Signed-off-by: Avinal Kumar <avinal.xlvii@gmail.com>
204 lines
3.0 KiB
Elm
204 lines
3.0 KiB
Elm
module Utils.Constants exposing (..)
|
|
|
|
import Array exposing (Array)
|
|
|
|
|
|
type alias Link =
|
|
{ url : String
|
|
, text : String
|
|
}
|
|
|
|
|
|
type alias IconLink =
|
|
{ url : String
|
|
, icon : String
|
|
}
|
|
|
|
|
|
footerLinks : List Link
|
|
footerLinks =
|
|
[ { text = "About", url = "https://avinal.space/pages/about-me" }
|
|
, { text = "Blog", url = "https://avinal.space/posts" }
|
|
, { text = "Projects", url = "https://avinal.space/pages/projects" }
|
|
, { text = "GSoC", url = "https://avinal.space/posts/gsoc" }
|
|
]
|
|
|
|
|
|
iconLinks : List IconLink
|
|
iconLinks =
|
|
[ { url = "https://github.com/avinal", icon = "fa-brands fa-github" }
|
|
, { url = "https://www.linkedin.com/in/avinal", icon = "fa-brands fa-linkedin" }
|
|
, { url = "https://instagram.com/avinal.k", icon = "fa-brands fa-instagram" }
|
|
, { url = "https://twitter.com/Avinal_", icon = "fa-brands fa-twitter" }
|
|
, { url = "mailto:ripple@avinal.space", icon = "fa-solid fa-envelope" }
|
|
, { url = "https://avinal.space/meet", icon = "fa-solid fa-video" }
|
|
]
|
|
|
|
|
|
months : Array String
|
|
months =
|
|
Array.fromList
|
|
[ "January"
|
|
, "February"
|
|
, "March"
|
|
, "April"
|
|
, "May"
|
|
, "June"
|
|
, "July"
|
|
, "August"
|
|
, "September"
|
|
, "October"
|
|
, "November"
|
|
, "December"
|
|
]
|
|
|
|
|
|
nameMatrix : Array Int
|
|
nameMatrix =
|
|
Array.fromList
|
|
[ 0
|
|
, 1
|
|
, 1
|
|
, 0
|
|
, 0
|
|
, 0
|
|
, 0
|
|
, 0
|
|
, 0
|
|
, 0
|
|
, 0
|
|
, 1
|
|
, 0
|
|
, 0
|
|
, 0
|
|
, 0
|
|
, 0
|
|
, 0
|
|
, 0
|
|
, 0
|
|
, 0
|
|
, 0
|
|
, 0
|
|
, 1
|
|
, 1
|
|
, 0
|
|
, 0
|
|
, 1
|
|
, 0
|
|
, 0
|
|
, 0
|
|
, 0
|
|
, 0
|
|
, 0
|
|
, 0
|
|
, 0
|
|
, 0
|
|
, 0
|
|
, 0
|
|
, 0
|
|
, 0
|
|
, 0
|
|
, 0
|
|
, 0
|
|
, 0
|
|
, 0
|
|
, 0
|
|
, 1
|
|
, 1
|
|
, 1
|
|
, 1
|
|
, 1
|
|
, 0
|
|
, 1
|
|
, 0
|
|
, 0
|
|
, 0
|
|
, 1
|
|
, 0
|
|
, 1
|
|
, 0
|
|
, 1
|
|
, 1
|
|
, 1
|
|
, 0
|
|
, 0
|
|
, 1
|
|
, 1
|
|
, 1
|
|
, 0
|
|
, 0
|
|
, 1
|
|
, 1
|
|
, 0
|
|
, 0
|
|
, 1
|
|
, 0
|
|
, 1
|
|
, 0
|
|
, 0
|
|
, 0
|
|
, 1
|
|
, 0
|
|
, 1
|
|
, 0
|
|
, 1
|
|
, 0
|
|
, 0
|
|
, 1
|
|
, 0
|
|
, 1
|
|
, 0
|
|
, 1
|
|
, 0
|
|
, 0
|
|
, 1
|
|
, 1
|
|
, 0
|
|
, 0
|
|
, 1
|
|
, 0
|
|
, 0
|
|
, 1
|
|
, 0
|
|
, 1
|
|
, 0
|
|
, 0
|
|
, 1
|
|
, 0
|
|
, 1
|
|
, 0
|
|
, 0
|
|
, 1
|
|
, 0
|
|
, 1
|
|
, 0
|
|
, 1
|
|
, 0
|
|
, 0
|
|
, 1
|
|
, 1
|
|
, 0
|
|
, 0
|
|
, 1
|
|
, 0
|
|
, 0
|
|
, 0
|
|
, 1
|
|
, 0
|
|
, 0
|
|
, 0
|
|
, 1
|
|
, 0
|
|
, 1
|
|
, 0
|
|
, 0
|
|
, 1
|
|
, 0
|
|
, 1
|
|
, 1
|
|
, 1
|
|
, 1
|
|
, 0
|
|
, 1
|
|
]
|