+
@@ -34,7 +34,7 @@ const currentPage = new URL(Astro.request.url).pathname;
diff --git a/src/pages/404.astro b/src/pages/404.astro
index e646dd3..03cb847 100644
--- a/src/pages/404.astro
+++ b/src/pages/404.astro
@@ -31,7 +31,7 @@ import Layout from "@layouts/Layout.astro";
In the meantime, why not take a look around our homepage and see if you can find something else that piques your interest? Who knows,
you might just stumble upon something even better than what you were originally
diff --git a/src/pages/about.astro b/src/pages/about.astro
index e763b80..ef16549 100644
--- a/src/pages/about.astro
+++ b/src/pages/about.astro
@@ -30,32 +30,31 @@ import { skills } from "~/config";
- My name is Jozef Steinhübl ("bl" - not
- "bel", I'm not a bell), but you may know me by my pseudonyms, Jozef Steinhübl ("bl" - not "bel",
+ I'm not a bell), but you may know me by my pseudonyms, Hyro, xHyroM, or general_kubo
. I am a developer with a passion for creating innovative
solutions, and I am currently engaged in various projects. Most of my
work is open-source and accessible on GitHub, where I contribute to the development of cutting-edge software
- solutions. You can also check ProjectsProjects 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, , LendMark, Mr. Infinity, , Roles Bot and for different content creators and influencers. My keen interest
in the latest technologies motivates me to contribute to diverse projects
@@ -96,13 +95,13 @@ import { skills } from "~/config";
and while I do not claim to be a master of any programming language,
my expertise in various languages is continually evolving. As a
contributor and moderator for the Bun project, I collaborated with my friend @FireTheFox to develop a native implementation of the node:os module.
diff --git a/src/pages/blog/[...page].astro b/src/pages/blog/[...page].astro
index ea5b841..112e5b2 100644
--- a/src/pages/blog/[...page].astro
+++ b/src/pages/blog/[...page].astro
@@ -40,7 +40,7 @@ const posts = page.data as {
{posts.map(post => {
return (
- {post.frontmatter.title}
+ {post.frontmatter.title}
{new Date(post.frontmatter.date).toLocaleDateString('en-us', {
year: 'numeric',
@@ -49,7 +49,7 @@ const posts = page.data as {
})}
{post.frontmatter.description}
-
+
)
})}
diff --git a/src/pages/projects.astro b/src/pages/projects.astro
index eac1606..b75d60f 100644
--- a/src/pages/projects.astro
+++ b/src/pages/projects.astro
@@ -60,7 +60,7 @@ projects.sort((a, b) => a.name.localeCompare(b.name));
{
projects.map((project) => (
-
+
{project.name}
diff --git a/tailwind.config.cjs b/tailwind.config.cjs
index 147d799..cea7eb1 100644
--- a/tailwind.config.cjs
+++ b/tailwind.config.cjs
@@ -14,8 +14,27 @@ module.exports = {
extend: {
colors: {
dark: "#0D0D0D",
- gray: "#131313",
- hyroGold: "#fbc119",
+ "dark-100": "#1A1A1A",
+ "dark-200": "#242424",
+ "dark-300": "#2E2E2E",
+ "dark-400": "#383838",
+ "dark-500": "#424242",
+ "dark-600": "#4C4C4C",
+ "dark-700": "#565656",
+ "dark-800": "#606060",
+ "dark-900": "#6A6A6A",
+ gray: "#808080",
+ "gray-100": "#999999",
+ "gray-200": "#B3B3B3",
+ "gray-300": "#CCCCCC",
+ "gray-400": "#E6E6E6",
+ "gray-500": "#F2F2F2",
+ gold: "#fbc119",
+ "gold-100": "#f9b84c",
+ "gold-200": "#f8ad3e",
+ "gold-300": "#f7a22f",
+ "gold-400": "#f69721",
+ "gold-500": "#f58c12",
},
dropShadow: {
yellow: ["0 35px 35px rgba(250, 193, 25, 0.5)"],
diff --git a/tsconfig.json b/tsconfig.json
index 220f675..b03b3c6 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -2,6 +2,8 @@
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"baseUrl": ".",
+ "jsx": "preserve",
+ "jsxImportSource": "preact",
"paths": {
"~/*": ["src/*"],
"@docs/*": ["docs/*"],