forked from
devins.page/devins.page
my website, hosted on wisp.place
1---
2import Layout from "../layouts/Layout.astro";
3---
4
5<Layout title="home" description="hi, i'm devin! :)">
6 <img
7 src="https://avatars.githubusercontent.com/u/42325132?s=256"
8 alt="my current profile picture on github"
9 class="floating-image"
10 />
11
12 <h1>home</h1>
13
14 <p>
15 hey, my name is devin (i'm also known as "intergrav" in some spaces). i
16 enjoy <strong>music</strong>, <strong>UI/UX design</strong>, <strong
17 >programming</strong
18 >, <strong>sysadmin stuff</strong>, and a bunch of other things!!!! :) i
19 don't have very much else to say about myself, but here are a couple
20 projects that i've created or work on:
21 </p>
22
23 <ul>
24 <li>
25 i made <a href="https://devcss.devins.page">dev.css</a> and <a
26 href="https://slightcss.devins.page">slight.css</a
27 >, two stylesheets for easily making simple, nice looking websites. this
28 site uses slight.css.
29 </li>
30 <li>
31 i made <a href="https://github.com/intergrav/devins-badges"
32 >Devin's Badges</a
33 >, a library of nicely designed badges for your projects. (on hiatus, not
34 sure when or if i'll work on it again)
35 </li>
36 <li>
37 i made and maintain <a href="https://modrinth.com/modpack/adrenaline"
38 >Adrenaline</a
39 > and <a href="https://modrinth.com/modpack/additive">Additive</a>, two
40 Minecraft modpacks that have become relatively popular in the modding
41 community.
42 </li>
43 <li>
44 i've helped contribute to <a href="https://modrinth.com">Modrinth</a> a couple
45 times, a website for sharing Minecraft mods. I made that little <a
46 href="https://cdn.modrinth.com/servers/excitement.webp">robot mascot</a
47 >
48 that they use sometimes, contributed some ideas, helped <a
49 href="https://support.modrinth.com/en/articles/9298760-third-party-packages"
50 >bring</a
51 >
52 <a href="https://github.com/modrinth/code/issues/497">attention</a> and organize
53 Linux/MacOS packaging for the Modrinth App, and made some images for their
54 <a href="https://modrinth.com/news">blog</a>.
55 </li>
56 </ul>
57
58 <p>
59 this whole website is open-source and available on <a
60 href="https://github.com/intergrav/devins.page">GitHub</a
61 >. you can see how i made it there.
62 </p>
63
64 <p>
65 need to reach out? send me an email at <a href="mailto:devin@devins.page"
66 >devin@devins.page</a
67 > or message me at <a href="https://matrix.to/#/@devin_real:matrix.org"
68 >@devin_real:matrix.org</a
69 >. <em
70 >however, keep in mind that i am a pretty reserved person. i have limited
71 availability and may not respond to everything immediately, or at all</em
72 >.
73 </p>
74</Layout>