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

@@ -24,4 +24,4 @@ title = "Tuan-Dat Tran"
reload_html = true
# which files or dirs will be watcher monitoring
watch_path = ["src", "assets"]
watch_path = ["src", "assets", "languages"]

View File

@@ -12,13 +12,15 @@ home_card_text =
Willkommen auf meiner kleinen Webseite im World Wide Web.
Mein Name ist Tuan und ich bin Linux-Bastler, IT-Security Enthusiast und IT-Automatisierer aus Leidenschaft.
home_card_contact_button = Get in touch.
cv_introduction_title = DevOps Engineer | Homelab Enthusiast
cv_introduction_0 =
DevOps-Engineer und Softwareentwickler mit starkem akademischen Hintergrund
DevOps Engineer und Softwareentwickler mit starkem akademischen Hintergrund
in Netzwerktechnologien und Softwareentwicklung. Spezialisiert auf Kubernetes,
Ansible, Azure und moderne Cloud-Technologien. Praxisnahe
Forschungserfahrung in Software-Defined Networking, 5G und Maschinellem Lernen.
Leidenschaft für effiziente IT-Infrastrukturen, Automatisierung und
innovative Softwarelösungen.
cv_introduction_tools = Lieblingstools:
cv_workexperience_title = Berufserfahrung
cv_workexperience_se1_gefeba_title = Software Entwickler @ gefeba Engineering GmbH
cv_workexperience_se1_gefeba_time = 2013 - 2015

View File

@@ -12,6 +12,7 @@ home_card_text =
Welcome to my little place on the internet
My name is Tuan and I'm passionate about Linux, system security, automation, performance tweaking and all things tech.
home_card_contact_button = Get in touch.
cv_introduction_title = DevOps Engineer | Homelab Enthusiast
cv_introduction_0 =
DevOps Engineer and Software Developer with a strong academic background in
networking technologies and software development. Specialized in Kubernetes,
@@ -19,6 +20,7 @@ cv_introduction_0 =
in Software-Defined Networking, 5G, and Machine Learning. Passionate about
efficient IT infrastructures, automation, and innovative software
solutions.
cv_introduction_tools = Favorite Tools:
cv_workexperience_title = Work Experience
cv_workexperience_se1_gefeba_title = Software Engineer @ gefeba Engineering GmbH
cv_workexperience_se1_gefeba_time = 2013 - 2015

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" }
},
},
}
}