1
0
mirror of https://github.com/avinal/avinal.github.io.git synced 2026-07-03 23:30:09 +05:30

add meet page and update image style

Signed-off-by: Avinal Kumar <avinal.xlvii@gmail.com>
This commit is contained in:
2023-01-30 22:25:21 +05:30
parent 7f4e4f5938
commit 921f5ee883
8 changed files with 105 additions and 11 deletions
+7 -2
View File
@@ -1,12 +1,17 @@
module Pages.Meet exposing (page)
import Components.Footer exposing (footerLinksToSide)
import Html
import Html
import Html.Attributes exposing (class, id)
import View exposing (View)
page : View msg
page =
{ title = "Schedule a meet with me"
, body = [ footerLinksToSide, Html.node "calcom" [] [] ]
, body =
[ Html.div [ class "aspect-square flex items-center justify-center flex-col h-screen m-2" ]
[ Html.node "cal-com" [ id "calcom-widget", class "w-full p-2 " ] [] ]
, footerLinksToSide
]
}