Add favorite tools
Some checks failed
Build Docker Image / Build (push) Has been cancelled

Signed-off-by: Tuan-Dat Tran <tuan-dat.tran@tudattr.dev>
This commit is contained in:
Tuan-Dat Tran
2025-04-06 18:23:26 +02:00
parent a1fd3ea358
commit 6e3db0294f
4 changed files with 17 additions and 3 deletions

View File

@@ -33,8 +33,18 @@ pub fn CV() -> Element {
fn Introduction() -> Element {
rsx! {
div {
class: "flex",
class: "flex-col",
h6 { class: "text-lg font-semibold text-white", { t!("cv_introduction_title") } },
P { { t!("cv_introduction_0") } },
P {
{ t!("cv_introduction_tools") },
" ",
Link { new_tab: true, to: "https://www.lazyvim.org/", "NeoVim (LazyVim)" },
", ",
Link { new_tab: true, to: "https://zellij.dev/", "Zellij" },
", ",
Link { new_tab: true, to: "https://k9scli.io/", "k9s" }
},
},
}
}