my website, hosted on wisp.place
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 88 lines 3.3 kB view raw
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="ms-4 float-end size-24 sm:size-32 rounded-sm" 10 /> 11 <div class="prose dark:prose-invert max-w-full"> 12 <p> 13 hey, my name is devin (i'm also known as "intergrav" in some spaces). i 14 enjoy <strong>music</strong>, <strong>UI/UX design</strong>, <strong 15 >programming</strong 16 >, <strong>sysadmin stuff</strong>, and a bunch of other things!!!! :) i 17 don't have very much else to say about myself, but here are a couple 18 projects that i've created or work on: 19 </p> 20 21 <ul> 22 <li> 23 i made <a href="https://devcss.devins.page">dev.css</a> and <a 24 href="https://slightcss.devins.page">slight.css</a 25 >, two stylesheets for easily making simple, nice looking websites. this 26 site uses slight.css. 27 </li> 28 <li> 29 i made <a href="https://github.com/intergrav/devins-badges" 30 >Devin's Badges</a 31 >, a library of nicely designed badges for your projects. this project 32 is on hiatus, i'm not sure when or if i'll work on it again. 33 </li> 34 <li> 35 i have made and maintained <a 36 href="https://modrinth.com/modpack/adrenaline">Adrenaline</a 37 > and <a href="https://modrinth.com/modpack/additive">Additive</a> for the 38 past 3-4 years, two Minecraft modpacks that have become relatively popular 39 in the modding community. 40 </li> 41 <li> 42 i was the leader of designing and writing the new <a 43 href="https://prismlauncher.org">Prism Launcher website</a 44 >, a project that took several months, focusing on cleanliness, 45 consistency, and usability. 46 </li> 47 <li> 48 i've helped contribute to <a href="https://modrinth.com">Modrinth</a> a couple 49 times, a website for sharing Minecraft mods. I made that little <a 50 href="https://cdn.modrinth.com/servers/excitement.webp" 51 >robot mascot</a 52 > 53 that they use sometimes, contributed some ideas, helped <a 54 href="https://support.modrinth.com/en/articles/9298760-third-party-packages" 55 >bring</a 56 > 57 <a href="https://github.com/modrinth/code/issues/497">attention</a> and organize 58 Linux/MacOS packaging for the Modrinth App, and made some images for their 59 <a href="https://modrinth.com/news">blog</a>. 60 </li> 61 </ul> 62 63 <p> 64 this whole website is open-source and available on <a 65 href="https://tangled.org/devins.page/devins.page">Tangled</a 66 >. this website is built with <a href="https://tailwindcss.com" 67 >Tailwind</a 68 > and <a href="https://astro.build">Astro</a>, and hosted by <a 69 href="https://wisp.place">wisp.place</a 70 >. (this current design is obviously inspired by Tangled's design!) 71 </p> 72 73 <p> 74 need to reach out? send me an email at <a href="mailto:devin@devins.page" 75 >devin@devins.page</a 76 > or message me at <a href="https://matrix.to/#/@devin_real:matrix.org" 77 >@devin_real:matrix.org</a 78 >. i don't really use social media anymore. 79 </p> 80 <p> 81 <em 82 >keep in mind that i am a pretty reserved person. i have limited 83 availability and may not respond to everything immediately, or at all. 84 it is nothing personal!</em 85 > 86 </p> 87 </div> 88</Layout>