diff --git a/src/assets/me.png b/src/assets/me.png new file mode 100644 index 0000000..a97f690 Binary files /dev/null and b/src/assets/me.png differ diff --git a/src/pages/about.astro b/src/pages/about.astro index d9af20f..de129b2 100644 --- a/src/pages/about.astro +++ b/src/pages/about.astro @@ -21,6 +21,8 @@ import Container from "@components/atoms/Container.astro"; import Navbar from "@components/widgets/Navbar.astro"; import TechIcon from "@components/widgets/TechIcon.astro"; import Layout from "@layouts/Layout.astro"; +import { Image } from "astro:assets"; +import me from "@assets/me.png"; import { SKILLS } from "~/config"; --- @@ -45,42 +47,54 @@ import { SKILLS } from "~/config"; }} > -

+

About Me

-
-

- Hey, my name is Jozef Steinhübl ("bl" - - not "bel", I'm not a bell), alias Hyro, xHyroM, or general_kubo - . I am 15 years old developer - with a passion for creating innovative solutions, and I am currently engaged - in various projects. Most of my work is open-source and on GitHub. You can also check Projects page on this website. -

+
+ me -

- Apart from my open-source projects, I'm working/have also worked on - other notable projects such as rajce.pro, LendMark, Mr. Infinity, Roles Bot and for different youtubers. My keen interest in the latest technologies - motivates me to contribute to diverse projects on Github, where I hone - my skills and expand my knowledge base. -

+
+

+ Hey, my name is Jozef Steinhübl ("bl" + - not "bel", I'm not a bell), alias Hyro, xHyroM, or general_kubo + . I am 15 years old developer + with a passion for creating innovative solutions, and I am currently + engaged in various projects. Most of my work is open-source and on GitHub. You can also check Projects page on this website. +

+ +

+ Apart from my open-source projects, I'm working/have also worked on + other notable projects such as rajce.pro, LendMark, Mr. Infinity, Roles Bot and for different youtubers. My keen interest in the latest technologies + motivates me to contribute to diverse projects on Github, where I hone + my skills and expand my knowledge base. +

+
diff --git a/src/scripts/snow.js b/src/scripts/snow.js index dd48e99..c2e50d9 100644 --- a/src/scripts/snow.js +++ b/src/scripts/snow.js @@ -253,7 +253,7 @@ class SnowStorm { window.scrollY || document.documentElement.scrollTop || (noFixed ? document.body.scrollTop : 0), - 10 + 10, ); if (isNaN(scrollY)) { scrollY = 0; // Netscape 6 scroll fix @@ -589,7 +589,7 @@ class SnowStorm { var i; for (i = 0; i < limit; i++) { storm.flakes[storm.flakes.length] = new storm.SnowFlake( - parseInt(rnd(flakeTypes), 10) + parseInt(rnd(flakeTypes), 10), ); if (allowInactive || i > storm.flakesMaxActive) { storm.flakes[storm.flakes.length - 1].active = -1; @@ -627,7 +627,7 @@ class SnowStorm { storm.events.add( isIE ? document : window, "mousemove", - storm.mouseMove + storm.mouseMove, ); } storm.animationInterval = Math.max(20, storm.animationInterval); @@ -646,7 +646,7 @@ class SnowStorm { storm.targetElement = document.getElementById(targetID); if (!storm.targetElement) { throw new Error( - 'Snowstorm: Unable to get targetElement "' + targetID + '"' + 'Snowstorm: Unable to get targetElement "' + targetID + '"', ); } } @@ -692,7 +692,7 @@ class SnowStorm { storm.events.remove( isIE ? document : window, "mousemove", - doDelayedStart + doDelayedStart, ); }