1
0
mirror of https://github.com/avinal/avinal.github.io.git synced 2026-07-03 23:30:09 +05:30
Files
avinal.github.io/src/Pages/Meet.elm
T
2023-01-30 23:57:37 +05:30

20 lines
515 B
Elm

module Pages.Meet exposing (page)
import Components.Footer exposing (footerLinksToSide)
import Html
import Html.Attributes exposing (class, id)
import View exposing (View)
page : View msg
page =
{ title = "Schedule a meet with me"
, body =
[ Html.div [ class "flex items-center justify-center flex-col h-screen m-2" ]
[ Html.node "cal-com" [ id "calcom-widget", class "w-full p-2" ] []
]
, Html.div [ class "py-16" ] []
, footerLinksToSide
]
}