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

minor performance improvements

Signed-off-by: Avinal Kumar <avinal.xlvii@gmail.com>
This commit is contained in:
2023-03-28 14:13:20 +05:30
parent 8e3d4b408f
commit e6753e137d
6 changed files with 20 additions and 20 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ footerLinksToSide =
Html.div [ class "fixed bottom-0 left-0 bg-neutral-900 z-20 p-4 w-full md:flex md:items-center md:justify-between md:p-4" ]
[ Html.ul [ class "flex flex-wrap items-center mt-3 text-xl sm:mt-0 text-gray-400" ]
(List.map singleLink <|
{ text = "Home", url = "/" }
{ text = "Home", url = "https://avinal.space" }
:: footerLinks
)
]
+1 -1
View File
@@ -60,7 +60,7 @@ type alias Model =
, generating : Bool
}
cellSize : Int
cellSize =
10
+1 -1
View File
@@ -233,7 +233,7 @@ errorView error =
[ class " text-gray-400"
]
[ Html.a
[ href "../posts"
[ href "https://avinal.space/posts"
, rel "referrer noopener"
, class "underline"
]
+5 -5
View File
@@ -17,10 +17,10 @@ type alias IconLink =
footerLinks : List Link
footerLinks =
[ { text = "About", url = "/pages/about-me" }
, { text = "Blog", url = "/posts" }
, { text = "Projects", url = "/pages/projects" }
, { text = "GSoC", url = "/posts/gsoc" }
[ { text = "About", url = "https://avinal.space/pages/about-me" }
, { text = "Blog", url = "https://avinal.space/posts" }
, { text = "Projects", url = "https://avinal.space/pages/projects" }
, { text = "GSoC", url = "https://avinal.space/posts/gsoc" }
]
@@ -31,7 +31,7 @@ iconLinks =
, { url = "https://instagram.com/avinal.k", icon = "fa-brands fa-instagram" }
, { url = "https://twitter.com/Avinal_", icon = "fa-brands fa-twitter" }
, { url = "mailto:ripple@avinal.space", icon = "fa-solid fa-envelope" }
, { url = "/meet", icon = "fa-solid fa-video" }
, { url = "https://avinal.space/meet", icon = "fa-solid fa-video" }
]
+1 -1
View File
@@ -57,7 +57,7 @@ authenticated pages.
-}
none : View msg
none =
{ title = "Avinal | Personal Website"
{ title = "Avinal Kumar | Personal Website"
, body = []
}