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

add date parser and refactor

- remove unused variables, methods
- move footer into a separate folder
- add date parser
- add datetime

Signed-off-by: Avinal Kumar <avinal.xlvii@gmail.com>
This commit is contained in:
2023-01-29 23:31:51 +05:30
parent c8b58f6080
commit dbd1dfec3a
13 changed files with 135 additions and 145 deletions
+12
View File
@@ -0,0 +1,12 @@
module Pages.Meet exposing (page)
import Components.Footer exposing (footerLinksToSide)
import Html
import View exposing (View)
page : View msg
page =
{ title = "Schedule a meet with me"
, body = [ footerLinksToSide, Html.node "calcom" [] [] ]
}