From 834e3194ca8e35da51da56e8f6e8946d35cb004a Mon Sep 17 00:00:00 2001 From: Dejvino Date: Mon, 18 May 2026 00:40:10 +0200 Subject: [PATCH] Content filled --- index.php | 11 +++++------ style.css | 6 ++++++ 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/index.php b/index.php index 8525a69..a3082d9 100644 --- a/index.php +++ b/index.php @@ -5,24 +5,23 @@ $name = "David Hrdina Němeček"; $site_title = "www.dejvino.cz"; $site_url = "https://www.dejvino.cz/"; -$site_desc = "$name - Professional Software Developer"; -$subtitle = "Full-Stack Architect & Open Source Contributor"; +$site_desc = "$name - Software Developer"; +$subtitle = "Software Developer, Architect, Problem Solver"; $photo_file = "photo.png"; $email_user = "ciao"; $about_text = [ - "Full-stack developer focused on high-performance systems and minimalist architecture.", - "Specializing in turning complex requirements into elegant, maintainable code." + "Full-stack developer focused on pragmatic architecture, observability and performance.", + //"" ]; $nav_links = [ "~/blog" => "https://wp.dejvino.com/", "~/projects" => "https://projects.dejvino.com/", "~/code" => "https://git.dejvino.cz/", - "~/personal" => "https://www.dejvino.cz/" ]; -$hardware_info = "Mandolin, Mountain Biking, and tuning my MX-5."; +$hardware_info = "Playing the mandolin, mountain biking, 3D printing and tinkering."; /** * Page design: diff --git a/style.css b/style.css index d214397..79e47fb 100644 --- a/style.css +++ b/style.css @@ -106,6 +106,12 @@ h2 { color: var(--link-color); background: rgba(255, 255, 255, 0.02); text-align: center; + transition: all 0.2s ease; +} + +.link-grid a:hover { + background: rgba(255, 255, 255, 0.08); + border-left-color: var(--accent-color); } a { color: var(--link-color); text-decoration: none; }