mirror of
https://github.com/avinal/avinal.github.io.git
synced 2026-07-03 23:30:09 +05:30
85c3881dcd
Signed-off-by: Avinal Kumar <avinal.xlvii@gmail.com>
20 lines
515 B
Elm
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
|
|
]
|
|
}
|