|
| 1 | +--- |
| 2 | +import { getStaticPaths } from "../../i18n/route"; |
| 3 | +import LinkButton from "../../components/LinkButton.astro"; |
| 4 | +import PageLayout from "../../layouts/PageLayout.astro"; |
| 5 | +
|
| 6 | +export { getStaticPaths }; |
| 7 | +--- |
| 8 | + |
| 9 | +<PageLayout title="About"> |
| 10 | + <div class="block"> |
| 11 | + <h1>About</h1> |
| 12 | + <p> |
| 13 | + I'm a high school student from Brazil. |
| 14 | + I absolutely love open-source and programming stuff! |
| 15 | + </p> |
| 16 | + |
| 17 | + <h2>Journey</h1> |
| 18 | + <p> |
| 19 | + I've been learning a lot stuff about programming and GNU/Linux since 2022. |
| 20 | + </p> |
| 21 | + <p> |
| 22 | + I've been using GNU/Linux as my primary operating system since last year, with |
| 23 | + <LinkButton href="https://fedoraproject.org/workstation" spacing={false} external> |
| 24 | + Fedora Workstation |
| 25 | + </LinkButton> and |
| 26 | + then in the start of this year, moving to |
| 27 | + <LinkButton href="https://archlinux.org" external spacing={false}> |
| 28 | + Arch Linux |
| 29 | + </LinkButton>. |
| 30 | + </p> |
| 31 | + |
| 32 | + <h2>Interests</h2> |
| 33 | + <p> |
| 34 | + Besides tech, I really like watching Anime! I am a guy that really likes slice of life, |
| 35 | + romance, comedy and drama 😜, my favorite shows are |
| 36 | + <a href="https://pt.wikipedia.org/wiki/Oshi_no_Ko">Oshi no Ko</a>, |
| 37 | + <a href="https://pt.wikipedia.org/wiki/Bocchi_the_Rock!">Bocchi The Rock!</a> and |
| 38 | + <a href="https://pt.wikipedia.org/wiki/Kaoru_Hana_wa_Rin_to_Saku">The Fragrant Flower Blooms with Dignity</a>. |
| 39 | + </p> |
| 40 | + <LinkButton external href="https://myanimelist.net/profile/retrozinndev"> |
| 41 | + My Anime List |
| 42 | + </LinkButton> |
| 43 | + |
| 44 | + <h2>Recent Projects</h2> |
| 45 | + <p> |
| 46 | + I started working on a Desktop Environment recently, called |
| 47 | + <a href="https://github.com/retrozinndev/colorshell">colorshell</a>. |
| 48 | + It's made to be used with the |
| 49 | + <LinkButton href="https://hypr.land" external spacing={false}> |
| 50 | + Hyprland Wayland Compositor |
| 51 | + </LinkButton>, |
| 52 | + making usage of amazing technologies like GnomeJS, TypeScript, GTK 4, AGS and the Astal Libraries to create a nice environment for your desktop. |
| 53 | + </p> |
| 54 | + <p> |
| 55 | + There's also a music player I've been working on, but it's a little bit abandoned for now. |
| 56 | + Still, I have a lot of ideas for it, so I won't be completely abandoning the app!! |
| 57 | + <br> |
| 58 | + The Music Player is called <a href="https://github.com/retrozinndev/Vibe">Vibe</a>, |
| 59 | + it's expected to use GnomeJS, GTK, Gnim and GStreamer to make things work. |
| 60 | + </p> |
| 61 | + </div> |
| 62 | +</PageLayout> |
0 commit comments