website
git clone https://git.pyrossh.dev/website
木 Personal website of pyrossh. Built with astrojs, shiki, vite.
bfd002c
— pyrossh
2026-07-07T17:10:45+05:30
fix: restore original Astro class names in home worker (title, repos, repo)
packages/workers/home/src/index.tsx
CHANGED
|
@@ -11,8 +11,7 @@ export default {
|
|
|
11
11
|
request={request}
|
|
12
12
|
>
|
|
13
13
|
<div class="pageContainer">
|
|
14
|
-
<div class="page-section">
|
|
15
|
-
<h1 class="
|
|
14
|
+
<h1 class="title">Hello!</h1>
|
|
16
15
|
<p class="description">
|
|
17
16
|
<a
|
|
18
17
|
href="https://www.linkedin.com/in/pyrossh"
|
|
@@ -95,9 +94,9 @@ export default {
|
|
|
95
94
|
</section>
|
|
96
95
|
<section>
|
|
97
96
|
<h2>Git</h2>
|
|
98
|
-
<div class="repos
|
|
97
|
+
<div class="repos">
|
|
99
98
|
{REPOS.map((repo) => (
|
|
100
|
-
<div class="repo
|
|
99
|
+
<div class="repo">
|
|
101
100
|
<h4>
|
|
102
101
|
<a href={`/repos/${repo.title}`}>{repo.title}</a>
|
|
103
102
|
</h4>
|
|
@@ -111,7 +110,6 @@ export default {
|
|
|
111
110
|
))}
|
|
112
111
|
</div>
|
|
113
112
|
</section>
|
|
114
|
-
</div>
|
|
115
113
|
</div>
|
|
116
114
|
</Layout>,
|
|
117
115
|
{ headers: { "content-type": "text/html" } },
|