add projects page

This commit is contained in:
2024-05-14 20:57:16 +02:00
parent 5d6cf1ba0c
commit 0bca511144
13 changed files with 244 additions and 0 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 130 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 76 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.4 KiB

+22
View File
@@ -0,0 +1,22 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
<defs>
<linearGradient id="g" x1="0" y1="0" x2="100" y2="100" gradientUnits="userSpaceOnUse">
<stop offset="15%" stop-color="#25b8ff" />
<stop offset="85%" stop-color="#fa02ff" />
</linearGradient>
</defs>
<g fill="none" stroke="url(#g)" stroke-linejoin="round" stroke-width="1.8">
<path d="M72.09 13.86L53.18 24.8l18.93 10.92 18.91-10.94z"/>
<path d="M49.87 1.05L30.95 11.99 49.88 22.9 68.8 11.97z"/>
<path d="M27.67 13.89L8.75 24.82l18.93 10.92 18.91-10.93z"/>
<path d="M49.89 26.7L30.97 37.64 49.9 48.55l18.92-10.93z"/>
<path d="M7.11 27.67l.01 21.86 18.93 10.91-.01-21.85z"/>
<path d="M29.33 40.49l.01 21.85 18.93 10.92-.01-21.85z"/>
<path d="M7.12 53.32l.01 21.85 18.93 10.91-.01-21.85z"/>
<path d="M29.34 66.14l.01 21.85L48.28 98.9l-.01-21.85z"/>
<path d="M51.57 98.9l18.92-10.93-.01-21.85-18.92 10.93z"/>
<path d="M73.78 86.06L92.7 75.13l-.02-21.85-18.91 10.93z"/>
<path d="M73.76 60.41l18.92-10.93-.01-21.85-18.92 10.93z"/>
<path d="M51.55 51.4l.01 21.85 18.91-10.93-.01-21.85z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

+1
View File
@@ -78,6 +78,7 @@ const { current = '' } = Astro.props;
<div class="nav-buttons"> <div class="nav-buttons">
<a class={current === "" ? "selected" : ""} href='/'>home</a> <a class={current === "" ? "selected" : ""} href='/'>home</a>
<a class={current === "about" ? "selected" : ""} href='/about'>about</a> <a class={current === "about" ? "selected" : ""} href='/about'>about</a>
<a class={current === "projects" ? "selected" : ""} href='/projects'>projects</a>
<a class={current === "blog" ? "selected" : ""} href='/blog'>blog</a> <a class={current === "blog" ? "selected" : ""} href='/blog'>blog</a>
</div> </div>
<div class="theme-toggle-container"> <div class="theme-toggle-container">
+221
View File
@@ -0,0 +1,221 @@
---
import BaseLayout from '../layouts/BaseLayout.astro';
const title = 'Projects';
const description = 'Stuff I\'m working on.';
const permalink = `${Astro.site.href}projects`;
---
<BaseLayout title={title} description={description} permalink={permalink} current="projects">
<div class="container">
<h1>Projects</h1>
<p>
Here are some of the projects I'm working on. Most of them are open source, so feel free to check them out!
<br>
Projects presented here are what I consider in presentable and/or finished state. They might or might not get updates.
<br>
Most logos generated using <a href="https://huggingface.co/spaces/dalle-mini/dalle-mini">DALL-E mini</a>.
</p>
<h2 id="minecraft"><a href="#minecraft">Minecraft</a></h2>
<hr>
<article>
<div class="icon">
<img src="/assets/projects/purpur.svg" alt="Purpur logo"/>
</div>
<div class="description">
<h3>Purpur</h3>
<p>
Purpur is a drop-in replacement for Paper servers designed for configurability and new, fun, exciting gameplay features.
</p>
<p>
<a href="https://purpurmc.org" target="_blank">Website</a> | <a href="https://github.com/PurpurMC/Purpur" target="_blank">Source</a>
</div>
</article>
<article>
<div class="icon">
<img src="/assets/projects/purpur.svg" alt="PurpurExtras logo"/>
</div>
<div class="description">
<h3>PurpurExtras</h3>
<p>
A companion plugin for Purpur server software that adds additional features and improvements.
</p>
<p>
<a href="https://modrinth.com/plugin/purpurextras" target="_blank">Website</a> | <a href="https://github.com/PurpurMC/PurpurExtras" target="_blank">Source</a>
</div>
</article>
<article>
<div class="icon">
<img src="/assets/projects/cw.png" alt="CommandWhitelist logo"/>
</div>
<div class="description">
<h3>CommandWhitelist</h3>
<p>
Minecraft bukkit plugin that allows to control precisely what commands players can see and use.
</p>
<p>
<a href="https://modrinth.com/plugin/commandwhitelist" target="_blank">Website</a> | <a href="https://github.com/YouHaveTrouble/CommandWhitelist" target="_blank">Source</a>
</div>
</article>
<article>
<div class="icon">
<img src="/assets/projects/ps.webp" alt="PreventStabby logo"/>
</div>
<div class="description">
<h3>PreventStabby</h3>
<p>
Minecraft bukkit plugin that gives more control over PvP capabilities.
</p>
<p>
<a href="https://modrinth.com/plugin/preventstabby" target="_blank">Website</a> | <a href="https://github.com/YouHaveTrouble/PreventStabby" target="_blank">Source</a>
</div>
</article>
<article>
<div class="icon">
<img src="/assets/projects/censura.webp" alt="Censura logo"/>
</div>
<div class="description">
<h3>Censura</h3>
<p>
Advanced censorship plugin for bukkit minecraft servers.
</p>
<p>
<a href="https://modrinth.com/plugin/censura" target="_blank">Website</a> | <a href="https://github.com/YouHaveTrouble/Censura" target="_blank">Source</a>
</div>
</article>
<article>
<div class="icon">
<img src="/assets/projects/njn.png" alt="NotJustNameplates logo"/>
</div>
<div class="description">
<h3>NotJustNamePlates</h3>
<p>
Minecraft purpur plugin replacing player nametags with display entities for ultimate control over them.
</p>
<p>
<a href="https://modrinth.com/plugin/notjustnameplates" target="_blank">Website</a> | <a href="https://github.com/YouHaveTrouble/NotJustNameplates" target="_blank">Source</a>
</div>
</article>
<article>
<div class="icon">
<img src="/assets/projects/yardwatch.png" alt="YardWatch logo"/>
</div>
<div class="description">
<h3>YardWatch</h3>
<p>
A pair of API and bukkit plugin that unifies protection plugin APIs
</p>
<p>
<a href="https://modrinth.com/plugin/yardwatch" target="_blank">Website</a> | <a href="https://github.com/YouHaveTrouble/YardWatch" target="_blank">Source (plugin)</a> | <a href="https://github.com/YouHaveTrouble/YardWatchAPI" target="_blank">Source (API)</a>
</div>
</article>
<h2 id="websites"><a href="#websites">Websites</a></h2>
<hr>
<article>
<div class="icon" >
<img src="/assets/projects/meapi.png" alt="MeAPI logo"/>
</div>
<div class="description">
<h3>MeAPI</h3>
<p>
API about me. See if I'm online, and if so, what game I'm playing.
</p>
<p>
<a href="https://api.youhavetrouble.me" target="_blank">Website</a> | <a href="https://github.com/YouHaveTrouble/MeAPI" target="_blank">Source</a>
</div>
</article>
<article>
<div class="icon">
<img src="/assets/projects/iwotd.png" alt="Interesting website of the Day logo"/>
</div>
<div class="description">
<h3>Interesting Website of the Day</h3>
<p>
Daily showcase of interesting websites from my personal database.
</p>
<p>
<a href="https://interesting-website.yht.one" target="_blank">Website</a>
</div>
</article>
<article>
<div class="icon">
<img src="/assets/projects/guildmaster.png" alt="Guild Master logo"/>
</div>
<div class="description">
<h3>Guild Master</h3>
<p>
Adventurer's guild management browser game.
</p>
<p>
<a href="https://guildmaster.yht.one" target="_blank">Website</a> | <a href="https://github.com/YouHaveTrouble/GuildMaster" target="_blank">Source</a>
</div>
</article>
<article>
<div class="icon">
<img src="/assets/projects/dumbforkgenerator.png" alt="Dumb Forks Generator logo"/>
</div>
<div class="description">
<h3>Dumb Forks Generator</h3>
<p>
PHP name generator for dumb minecraft server software fork names.
</p>
<p>
<a href="https://dumbforks.yht.one" target="_blank">Website</a>
</div>
</article>
<article>
<div class="icon" aria-label="">
<img src="/assets/projects/guesstheanime.png" alt="Guess the Anime logo"/>
</div>
<div class="description">
<h3>Guess the Anime</h3>
<p>
A game where you guess an anime title based off blurred art and a synopsis.
</p>
<p>
<a href="https://guessanime.yht.one" target="_blank">Website</a> | <a href="https://github.com/YouHaveTrouble/GuessTheAnime" target="_blank">Source</a>
</div>
</article>
</div>
</BaseLayout>
<style>
article {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: flex-start;
gap: 1rem;
flex-wrap: wrap;
margin-bottom: 3.25rem;
}
.icon {
width: 8rem;
aspect-ratio: 1;
display: flex;
justify-content: center;
align-items: center;
border: 1px solid var(--text-main);
border-radius: 0.25rem;
font-weight: 600;
}
.description {
flex: 1;
display: flex;
flex-direction: column;
min-width: min(100%, 25rem);
}
.description > * {
margin-block: 0.5rem;
}
.icon img {
width: 100%;
height: 100%;
object-fit: contain;
border-radius: 0.25rem;
}
</style>