1
0
Fork 0
forked from nin0/website
Signed-off-by: darwinx64 <tiramisyuz@proton.me>
This commit is contained in:
darwinx64 2025-04-19 23:45:40 -05:00 committed by darwinx64
parent 8ed804a5e6
commit 98412adab9
No known key found for this signature in database
35 changed files with 1821 additions and 1424 deletions

View file

@ -1,6 +1,9 @@
---
import GroupBox from "@components/GroupBox.astro";
import Button from "@components/Button.astro";
import Window from "@components/Window.astro";
import ForgejoIcon from "@assets/svg/forgejo.svg";
import GithubIcon from "@assets/svg/github.svg";
---
<Window
@ -11,24 +14,16 @@ import Window from "@components/Window.astro";
customClass="code-window"
offset="55px"
>
<p>
As mentioned in the main page, I write code. Some used by a lot, some
not as much. You can find it on:
<GroupBox name="GitHub (@nin0-dev)">
Here, you'll find most of my external contributions. I rarely start
personal projects on GitHub.
<br />
<a href="https://gh.nin0.dev">Go!</a>
<br />
<br />
</GroupBox>
<GroupBox name="Forgejo (@nin0)">
Some more personal/niche projects can be found on my own instance
(git.nin0.dev), which will probably be down.
<br />
<a href="https://git.nin0.dev/nin0">Go!</a>
<br />
<br />
</GroupBox>
</p>
As mentioned in the main page, I write code. Some used by a lot, some
not as much. You can find it below.
<Button name="GitHub" url="https://gh.nin0.dev/">
<GithubIcon slot="icon" />
Here, you'll find most of my external contributions. I rarely start
personal projects on GitHub.
</Button>
<Button name="Forgejo" url="https://git.nin0.dev/nin0">
<ForgejoIcon slot="icon" />
Some more personal/niche projects can be found on my own instance
(git.nin0.dev), which will probably be down.
</Button>
</Window>