This commit is contained in:
bronku 2026-01-07 22:51:53 +01:00
parent 2f3507a3c3
commit 1dac631a14
3 changed files with 10 additions and 5 deletions

4
favicon.svg Normal file
View file

@ -0,0 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
<rect width="100" height="100" rx="20" fill="#000080"/>
<path d="M30 30 L70 50 L30 70" stroke="white" stroke-width="12" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 255 B

View file

@ -4,6 +4,7 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="./style.css" rel="stylesheet" />
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
<title>Jakub Bronk | Portfolio</title>
</head>
@ -87,9 +88,9 @@
I value <b>simplicity, ownership, and efficiency</b>. My preference for
languages like C and Go stems from a desire to understand the hardware
beneath the code. I apply this logic to my homelab, where I prioritize
self-hosting over third-party dependencies. This is why I prefer a
personal Gitea page over GitHub and strive to minimize dependencies in
my own code.
self-hosting over third-party dependencies. This is why I prefer ssh to
my home server over GitHub and strive to minimize dependencies in my own
code.
</p>
</section>
@ -131,7 +132,7 @@
<footer>
<p>
Built with plain HTML/CSS. Hosted on Codeberg due to home bandwidth
Built with plain HTML/CSS. Hosted on github due to home bandwidth
limitations. Text on this site has been proofread with AI assistance.
</p>
</footer>

View file

@ -1,7 +1,7 @@
:root {
--bg: #ffffff;
--text: #1a1a1a;
--accent: #2563eb;
--accent: #000080;
--dim: #666;
--code-bg: #f4f4f4;
}