Content filled

This commit is contained in:
Dejvino 2026-05-18 00:40:10 +02:00
parent 07cc610d05
commit 834e3194ca
2 changed files with 11 additions and 6 deletions

View File

@ -5,24 +5,23 @@
$name = "David Hrdina Němeček"; $name = "David Hrdina Němeček";
$site_title = "www.dejvino.cz"; $site_title = "www.dejvino.cz";
$site_url = "https://www.dejvino.cz/"; $site_url = "https://www.dejvino.cz/";
$site_desc = "$name - Professional Software Developer"; $site_desc = "$name - Software Developer";
$subtitle = "Full-Stack Architect & Open Source Contributor"; $subtitle = "Software Developer, Architect, Problem Solver";
$photo_file = "photo.png"; $photo_file = "photo.png";
$email_user = "ciao"; $email_user = "ciao";
$about_text = [ $about_text = [
"Full-stack developer focused on high-performance systems and minimalist architecture.", "Full-stack developer focused on pragmatic architecture, observability and performance.",
"Specializing in turning complex requirements into elegant, maintainable code." //""
]; ];
$nav_links = [ $nav_links = [
"~/blog" => "https://wp.dejvino.com/", "~/blog" => "https://wp.dejvino.com/",
"~/projects" => "https://projects.dejvino.com/", "~/projects" => "https://projects.dejvino.com/",
"~/code" => "https://git.dejvino.cz/", "~/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: * Page design:

View File

@ -106,6 +106,12 @@ h2 {
color: var(--link-color); color: var(--link-color);
background: rgba(255, 255, 255, 0.02); background: rgba(255, 255, 255, 0.02);
text-align: center; 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; } a { color: var(--link-color); text-decoration: none; }