aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFilip Wandzio <contact@philw.dev>2025-10-05 22:11:52 +0200
committerFilip Wandzio <contact@philw.dev>2025-10-05 22:11:52 +0200
commit8a761c7af5cd0855d1d489c20714b0070fa01ef5 (patch)
tree42bd04c5927270dddef18ad307e638ecf30c00cb
parenta30232f3ec4ce4531a6eb3dd5f9bc8e6d4667b26 (diff)
downloadphilw.dev-8a761c7af5cd0855d1d489c20714b0070fa01ef5.tar.gz
philw.dev-8a761c7af5cd0855d1d489c20714b0070fa01ef5.zip
Update descriptions, remove research tab
-rw-r--r--src/app.css1
-rw-r--r--src/lib/components/Header.svelte8
-rw-r--r--src/lib/components/Main.svelte28
3 files changed, 21 insertions, 16 deletions
diff --git a/src/app.css b/src/app.css
index 6334a7a..5b049eb 100644
--- a/src/app.css
+++ b/src/app.css
@@ -28,6 +28,7 @@ body {
28 flex-direction: column; 28 flex-direction: column;
29 min-height: 100vh; 29 min-height: 100vh;
30 overflow: auto; 30 overflow: auto;
31 overflow-y: auto;
31 32
32 /* Hide scrollbar, preserve scroll */ 33 /* Hide scrollbar, preserve scroll */
33 -ms-overflow-style: none; /* IE/Edge */ 34 -ms-overflow-style: none; /* IE/Edge */
diff --git a/src/lib/components/Header.svelte b/src/lib/components/Header.svelte
index eeeb78d..4be78d0 100644
--- a/src/lib/components/Header.svelte
+++ b/src/lib/components/Header.svelte
@@ -1,11 +1,11 @@
1<script> 1<script lang="ts">
2 let menuOpen = false; 2 let menuOpen: boolean = false;
3 3
4 function toggleMenu() { 4 function toggleMenu(): void {
5 menuOpen = !menuOpen; 5 menuOpen = !menuOpen;
6 } 6 }
7 7
8 function closeMenu() { 8 function closeMenu(): void {
9 menuOpen = false; 9 menuOpen = false;
10 } 10 }
11</script> 11</script>
diff --git a/src/lib/components/Main.svelte b/src/lib/components/Main.svelte
index 9cb6d42..d5f0e0e 100644
--- a/src/lib/components/Main.svelte
+++ b/src/lib/components/Main.svelte
@@ -2,7 +2,10 @@
2 <section id="about" aria-labelledby="about-heading"> 2 <section id="about" aria-labelledby="about-heading">
3 <h2 id="about-heading">About</h2> 3 <h2 id="about-heading">About</h2>
4 <p> 4 <p>
5 I’m a software engineer who builds practical tools focused on performance and usability. Currently I work on web (both back and front), mobile and embedded software. 5 I’m a software engineer and CS major(ongoing master's degree)
6 currently working on web, mobile and embedded software. My tech
7 stack mostly includes <strong>Rust</strong> and
8 <strong>Svelte</strong>.
6 </p> 9 </p>
7 </section> 10 </section>
8 11
@@ -15,17 +18,9 @@
15 rel="noopener noreferrer" 18 rel="noopener noreferrer"
16 aria-label="visit Filip Wandzio's git repository" 19 aria-label="visit Filip Wandzio's git repository"
17 >git repository</a 20 >git repository</a
18 >. They include experiments, prototypes, and working tools I use personally. You can also find materials from my talks and presentations. 21 >. They include experiments, prototypes, and working tools I use
19 </p> 22 personally. You can also find materials from my talks and
20 </section> 23 presentations.
21
22 <section id="research" aria-labelledby="research-heading">
23 <h2 id="research-heading">Research</h2>
24 <p>
25 I am an undergraduate / master’s student in Computer Science, interested in <strong>Cybersecurity, Operating Systems, and Networks</strong>. I focus on learning core concepts and building practical projects that connect theory to practice.
26 </p>
27 <p>
28 I enjoy reviewing papers and creating prototypes. I plan to continue my studies to deepen my expertise.
29 </p> 24 </p>
30 </section> 25 </section>
31 26
@@ -37,5 +32,14 @@
37 aria-label="email filip wandzio">contact@philw.dev</a 32 aria-label="email filip wandzio">contact@philw.dev</a
38 >. 33 >.
39 </p> 34 </p>
35 <p>
36 Or find me in the [matrix] network: <a
37 href="https://matrix.to/@philw:matrix.philw.dev"
38 target="_blank"
39 rel="noopener noreferrer"
40 aria-label="filip wandzio matrix account"
41 >@philw:matrix.philw.dev</a
42 >.
43 </p>
40 </section> 44 </section>
41</main> 45</main>