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
+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" }
]