Skip to content

Commit 8db86e7

Browse files
authored
Merge pull request #22 from milan-codes/dev
Dev
2 parents 832d2cd + c7e052e commit 8db86e7

13 files changed

Lines changed: 18 additions & 47 deletions

File tree

.envrc

Lines changed: 0 additions & 1 deletion
This file was deleted.

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,3 @@ pnpm-debug.log*
1919

2020
# macOS-specific files
2121
.DS_Store
22-
23-
.direnv

bun.lockb

940 Bytes
Binary file not shown.

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,21 +16,21 @@
1616
},
1717
"dependencies": {
1818
"@astrojs/partytown": "^2.1.4",
19-
"@fontsource-variable/roboto-mono": "^5.2.6",
19+
"@fontsource-variable/roboto-mono": "^5.2.8",
2020
"@tailwindcss/vite": "^4.1.13",
21-
"astro": "^5.13.7",
21+
"astro": "^5.14.1",
2222
"mdast-util-to-string": "^4.0.0",
2323
"reading-time": "^1.5.0",
2424
"tailwindcss": "^4.1.13"
2525
},
2626
"devDependencies": {
2727
"@commitlint/cli": "^19.8.1",
2828
"@commitlint/config-conventional": "^19.8.1",
29-
"@eslint/js": "^9.35.0",
30-
"@tailwindcss/typography": "^0.5.16",
31-
"@typescript-eslint/parser": "^8.43.0",
29+
"@eslint/js": "^9.36.0",
30+
"@tailwindcss/typography": "^0.5.19",
31+
"@typescript-eslint/parser": "^8.44.1",
3232
"astro-eslint-parser": "^1.2.2",
33-
"eslint": "^9.35.0",
33+
"eslint": "^9.36.0",
3434
"eslint-plugin-astro": "^1.3.1",
3535
"husky": "^9.1.7",
3636
"prettier": "^3.6.2",
@@ -39,6 +39,6 @@
3939
"rehype-katex": "^7.0.1",
4040
"rehype-mathjax": "^7.1.0",
4141
"remark-math": "^6.0.0",
42-
"typescript-eslint": "^8.43.0"
42+
"typescript-eslint": "^8.44.1"
4343
}
4444
}

src/components/About.astro

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<div class="my-4 text-gray-600 dark:text-gray-400">
2-
Hi, I'm Milán. I enjoy building creative, cool products. I'm currently working
3-
towards obtaining my bachelor's degree in computer science at the University
4-
of Pécs, Faculty of Sciences.
2+
Hi, I'm Milán. I enjoy building creative, cool products. I'm a software
3+
developer currently located in Hungary. I do a lot of React and Next.js, and
4+
also work with other frameworks like Astro. Check out the projects I've been
5+
working on.
56
</div>

src/components/ProjectCard.astro

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ interface Props {
77
}
88
99
const { project } = Astro.props;
10-
const { name, tags, link } = project;
10+
const { name, link } = project;
1111
---
1212

1313
<div
@@ -22,5 +22,4 @@ const { name, tags, link } = project;
2222
{name}
2323
<ArrowUpRight />
2424
</a>
25-
{tags.join(", ")}
2625
</div>

src/components/Projects.astro

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -15,32 +15,6 @@ const projects: Project[] = [
1515
link: "https://github.com/milan-codes/milan-codes.github.io",
1616
tags: ["Astro", "Tailwind"],
1717
},
18-
{
19-
name: "The Briefing Room",
20-
description: "Access and visualize Formula 1 telemetry data",
21-
link: "https://github.com/milan-codes/the-briefing-room",
22-
tags: ["Next", "React.ts", "Tailwind"],
23-
},
24-
{
25-
name: "The Briefing Room API",
26-
description: "Simple Flask API to serve The Briefing Room's frontend",
27-
link: "https://github.com/milan-codes/the-briefing-room-api",
28-
tags: ["Flask"],
29-
},
30-
{
31-
name: "Studician",
32-
description:
33-
"Android app for students to digitalize their timetable and tasks",
34-
link: "https://github.com/milan-codes/studician-android-client",
35-
tags: ["Kotlin"],
36-
},
37-
{
38-
name: "Studician API",
39-
description:
40-
"Express API to make information available for Studician users",
41-
link: "https://github.com/milan-codes/studician-api",
42-
tags: ["Node.js", "Express", "Firebase"],
43-
},
4418
];
4519
---
4620

src/layouts/PostLayout.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ interface Props {
1010
const { post } = Astro.props;
1111
---
1212

13-
<BaseLayout title={post.data.title}>
13+
<BaseLayout title={`milan-codes - ${post.data.title}`}>
1414
<link
1515
rel="stylesheet"
1616
href="https://cdn.jsdelivr.net/npm/katex@0.15.2/dist/katex.min.css"

src/pages/404.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ import PageNotFound from "../components/PageNotFound.astro";
33
import BaseLayout from "../layouts/BaseLayout.astro";
44
---
55

6-
<BaseLayout title="404 Not Found">
6+
<BaseLayout title="milan-codes - 404">
77
<PageNotFound />
88
</BaseLayout>

src/pages/blog/index.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const orderedPosts = posts.sort((a, b) => {
1414
const tags = [...new Set(posts.map((post) => post.data.tags).flat())];
1515
---
1616

17-
<BaseLayout title="Milán Herke - Blog">
17+
<BaseLayout title="milan-codes - blog">
1818
<Navbar />
1919
<h1 class="mt-4 mb-1 text-gray-900 lowercase dark:text-gray-100">Posts</h1>
2020
<Tags tags={tags} />

0 commit comments

Comments
 (0)