From 6e3db0294fc39d33c6a958cf904b87919d3d05f3 Mon Sep 17 00:00:00 2001 From: Tuan-Dat Tran Date: Sun, 6 Apr 2025 18:23:26 +0200 Subject: [PATCH] Add favorite tools Signed-off-by: Tuan-Dat Tran --- Dioxus.toml | 2 +- languages/de-DE.ftl | 4 +++- languages/en-GB.ftl | 2 ++ src/cv.rs | 12 +++++++++++- 4 files changed, 17 insertions(+), 3 deletions(-) diff --git a/Dioxus.toml b/Dioxus.toml index fd4569c..484cc82 100644 --- a/Dioxus.toml +++ b/Dioxus.toml @@ -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"] diff --git a/languages/de-DE.ftl b/languages/de-DE.ftl index 5522e69..b4b3b00 100644 --- a/languages/de-DE.ftl +++ b/languages/de-DE.ftl @@ -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 diff --git a/languages/en-GB.ftl b/languages/en-GB.ftl index 194f12c..45d7444 100644 --- a/languages/en-GB.ftl +++ b/languages/en-GB.ftl @@ -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 diff --git a/src/cv.rs b/src/cv.rs index a81c027..a578159 100644 --- a/src/cv.rs +++ b/src/cv.rs @@ -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" } + }, }, } }