~repos /website
git clone
https://pyrossh.dev/repos/website.git
Discussions:
https://groups.google.com/g/rust-embed-devs
木 Personal website of pyrossh. Built with astrojs, shiki, vite.
169f9fcc
—
pyrossh 3 days ago
add google group
- app-icon.png +0 -0
- src/assets/icons/icon.svg +2 -2
- src/layouts/BaseLayout.astro +1 -1
- src/layouts/RepoLayout.astro +5 -1
- src/pages/index.astro +6 -0
app-icon.png
DELETED
|
Binary file
|
src/assets/icons/icon.svg
CHANGED
|
@@ -48,11 +48,11 @@
|
|
|
48
48
|
x="0"
|
|
49
49
|
y="0" />
|
|
50
50
|
<g
|
|
51
|
-
fill="#
|
|
51
|
+
fill="#fff866"
|
|
52
52
|
fill-rule="evenodd"
|
|
53
53
|
font-size="12px"
|
|
54
54
|
id="svgGroup"
|
|
55
|
-
stroke="#
|
|
55
|
+
stroke="#fff866"
|
|
56
56
|
stroke-linecap="round"
|
|
57
57
|
stroke-width="0.1mm"
|
|
58
58
|
transform="matrix(0.48162,0,0,0.499296,9.5892817,8.02666)">
|
src/layouts/BaseLayout.astro
CHANGED
|
@@ -90,7 +90,7 @@ const canonicalURL = new URL(Astro.url.pathname, Astro.site);
|
|
|
90
90
|
:root {
|
|
91
91
|
--color-black: light-dark(hsl(0, 0%, 0%), hsl(0, 0%, 0%));
|
|
92
92
|
--color-white: light-dark(hsl(0, 0%, 100%), hsl(0, 0%, 100%));
|
|
93
|
-
--color-accent:
|
|
93
|
+
--color-accent: hsl(57.25deg 100% 70%);
|
|
94
94
|
--color-body-bg: light-dark(hsl(0, 0%, 100%), hsl(210, 13%, 15%));
|
|
95
95
|
--color-box-bg: light-dark(hsl(0, 0%, 95%), hsl(210, 13%, 9%));
|
|
96
96
|
--color-text: light-dark(hsl(0, 0%, 13%), hsl(210, 17%, 98%));
|
src/layouts/RepoLayout.astro
CHANGED
|
@@ -30,7 +30,7 @@ const { pathname } = Astro.url;
|
|
|
30
30
|
https://pyrossh.dev/repos/{title}.git
|
|
31
31
|
</a>
|
|
32
32
|
<span
|
|
33
|
-
data-tooltip="For contributions, please use git patches and send them
|
|
33
|
+
data-tooltip="For contributions, please use git patches and send them to my email or the google group rust-embed-devs@googlegroups.com"
|
|
34
34
|
>
|
|
35
35
|
<Icon
|
|
36
36
|
name="mdi:information-outline"
|
|
@@ -154,6 +154,10 @@ const { pathname } = Astro.url;
|
|
|
154
154
|
/* color: var(--color-tag) !important; */
|
|
155
155
|
}
|
|
156
156
|
|
|
157
|
+
span {
|
|
158
|
+
font-size: 0.8rem;
|
|
159
|
+
}
|
|
160
|
+
|
|
157
161
|
svg {
|
|
158
162
|
display: inline;
|
|
159
163
|
/* color: var(--color-code-fg); */
|
src/pages/index.astro
CHANGED
|
@@ -72,6 +72,12 @@ import { REPOS, TOOLS } from "@/consts";
|
|
|
72
72
|
https://www.linkedin.com/in/pyrossh
|
|
73
73
|
</a>
|
|
74
74
|
</li>
|
|
75
|
+
<li>
|
|
76
|
+
<strong>google group:</strong>
|
|
77
|
+
<a href="https://groups.google.com/g/rust-embed-devs">
|
|
78
|
+
rust-embed-devs
|
|
79
|
+
</a>
|
|
80
|
+
</li>
|
|
75
81
|
</ul>
|
|
76
82
|
</section>
|
|
77
83
|
</div>
|