mirror of
https://github.com/avinal/avinal.github.io.git
synced 2026-07-04 07:40:09 +05:30
add font page design
Signed-off-by: Avinal Kumar <avinal.xlvii@gmail.com>
This commit is contained in:
+5
-3
@@ -127,9 +127,11 @@ viewFooter page =
|
|||||||
_ ->
|
_ ->
|
||||||
footer [ class "foo-footer" ]
|
footer [ class "foo-footer" ]
|
||||||
[ ul []
|
[ ul []
|
||||||
[ li []
|
[ li [] [ a [ href websiteBase ] [ text "Home" ] ]
|
||||||
[ a [ href websiteBase ] [ text "Home" ]
|
, li [] [ a [ href "https://avinal.space/pages/about-me" ] [ text "About me " ] ]
|
||||||
]
|
, li [] [ a [ href "https://avinal.space/posts" ] [ text "Blog" ] ]
|
||||||
|
, li [] [ a [ href "https://avinal.space/pages/projects" ] [ text "Projects" ] ]
|
||||||
|
, li [] [ a [ href "https://gsoc.avinal.space" ] [ text "GSoC" ] ]
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
in
|
in
|
||||||
|
|||||||
+17
-12
@@ -25,12 +25,12 @@ view model =
|
|||||||
, div [ class "foo-support__message" ] [ model.support_message ]
|
, div [ class "foo-support__message" ] [ model.support_message ]
|
||||||
, div [ class "foo-error__message" ] [ model.error_message ]
|
, div [ class "foo-error__message" ] [ model.error_message ]
|
||||||
, div [ class "foo-support__message" ]
|
, div [ class "foo-support__message" ]
|
||||||
[ a [ href "https://avinal.space/pages/about-me" ] [ text "About me " ]
|
[ a [ href "https://avinal.space/pages/about-me" ] [ text "About me" ]
|
||||||
, text " "
|
, text " "
|
||||||
, a [ href "https://avinal.space/posts" ] [ text "Blog" ]
|
, a [ href "https://avinal.space/posts" ] [ text "Blog" ]
|
||||||
, text " "
|
, text " "
|
||||||
, a [ href "https://avinal.space/pages/projects" ] [ text "Projects" ]
|
, a [ href "https://avinal.space/pages/projects" ] [ text "Projects" ]
|
||||||
, text " "
|
, text " "
|
||||||
, a [ href "https://gsoc.avinal.space" ] [ text "GSoC" ]
|
, a [ href "https://gsoc.avinal.space" ] [ text "GSoC" ]
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
@@ -46,11 +46,12 @@ notFound error =
|
|||||||
{ support_message = default.support_message
|
{ support_message = default.support_message
|
||||||
, error_message =
|
, error_message =
|
||||||
span []
|
span []
|
||||||
[ i [ class "fa-duotone fa-triangle-exclamation foo-term-yellow" ] []
|
[ i [ class "fa-solid fa-triangle-exclamation foo-term-yellow" ] []
|
||||||
, text " I could not find anything on this "
|
, text " I could not find anything on this "
|
||||||
, i [ class "fa-duotone fa-link" ] [ text error ]
|
, i [ class "fa-solid fa-link" ] []
|
||||||
|
, text error
|
||||||
, text " . If you think this is a mistake, please contact me."
|
, text " . If you think this is a mistake, please contact me."
|
||||||
, i [ class "fa-duotone fa-triangle-exclamation foo-term-yellow" ] []
|
, i [ class "fa-solid fa-triangle-exclamation foo-term-yellow" ] []
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -60,17 +61,21 @@ default =
|
|||||||
{ support_message =
|
{ support_message =
|
||||||
span []
|
span []
|
||||||
[ a [ href "https://github.com/avinal" ] [ i [ class "fa-brands fa-github" ] [] ]
|
[ a [ href "https://github.com/avinal" ] [ i [ class "fa-brands fa-github" ] [] ]
|
||||||
|
, text " "
|
||||||
, a [ href "https://www.linked.com/in/avinal" ] [ i [ class "fa-brands fa-linkedin" ] [] ]
|
, a [ href "https://www.linked.com/in/avinal" ] [ i [ class "fa-brands fa-linkedin" ] [] ]
|
||||||
|
, text " "
|
||||||
, a [ href "https://instagram.com/avinal.k" ] [ i [ class "fa-brands fa-instagram" ] [] ]
|
, a [ href "https://instagram.com/avinal.k" ] [ i [ class "fa-brands fa-instagram" ] [] ]
|
||||||
, a [ href "" ] [ i [ class "fa-duotone fa-calandar-days" ] [] ]
|
, text " "
|
||||||
, a [ href "mailto:ripple+blog@avinal.space" ] [ i [ class "fa-duotone fa-envelope" ] [] ]
|
, a [ href "" ] [ i [ class "fa-solid fa-calandar-days" ] [] ]
|
||||||
, a [ href "https://avinal.space/terminal" ] [ i [ class "fa-duotone fa-terminal" ] [] ]
|
, a [ href "mailto:ripple+blog@avinal.space" ] [ i [ class "fa-solid fa-envelope" ] [] ]
|
||||||
|
, text " "
|
||||||
|
, a [ href "https://avinal.space/terminal" ] [ i [ class "fa-solid fa-terminal" ] [] ]
|
||||||
]
|
]
|
||||||
, error_message =
|
, error_message =
|
||||||
span []
|
span []
|
||||||
[ text "I'm Avinal, and I work at Red Hat"
|
[ text "I'm Avinal, and I work at Red Hat "
|
||||||
, i [ class "fa-brands fa-redhat foo-term-red" ] []
|
, i [ class "fa-brands fa-redhat foo-term-red" ] []
|
||||||
, text "as an Associate Software Engineer for Hybrid Cloud Engineering."
|
, text " as an Associate Software Engineer for Hybrid Cloud Engineering."
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user