diff options
author | axtloss <axtlos@disroot.org> | 2024-08-20 01:20:30 +0200 |
---|---|---|
committer | axtloss <axtlos@disroot.org> | 2024-08-20 01:20:30 +0200 |
commit | e235aa6cf4914cbff6c72f19e0fcf6888da349f7 (patch) | |
tree | 0d488cadc02706aa2c7652b42e4f21342125c5f7 /src/routes/projects/+page.svelte | |
parent | 479414a93ae03a4463c16d54b39cd155b1e04683 (diff) | |
download | website-e235aa6cf4914cbff6c72f19e0fcf6888da349f7.tar.gz website-e235aa6cf4914cbff6c72f19e0fcf6888da349f7.tar.bz2 |
yayyy new website!!
Diffstat (limited to '')
-rw-r--r-- | src/routes/projects/+page.svelte | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/src/routes/projects/+page.svelte b/src/routes/projects/+page.svelte new file mode 100644 index 0000000..dbe5516 --- /dev/null +++ b/src/routes/projects/+page.svelte @@ -0,0 +1,53 @@ +<script lang="ts"> + import ProjectEntry from "./ProjectEntry.svelte"; +</script> + +<page> + <section id="title"> + <h1>Projects</h1> + </section> + <section id="brief"> + <p> + A list of most projects I have worked on or am a part of, note that not all of them are still maintained. + </p> + </section> + <ProjectEntry name={'FsVerify'} description={'Block Based filesystem verification for immutable Linux Distributions written in golang and C'} + projType={'Personal Project'} link={'https://github.com/axtloss/fsverify'}/> + + <ProjectEntry name={'BVG - Basic Vector Graphics'} description={'Custom made vector graphic format for use with FsVerify, the parser (fbwarn) is written in C using raylib'} + projType={'Personal Project'} link={'https://github.com/axtloss/fsverify/tree/main/fbwarn'}> + <img src="/bvg.png" alt="The FsVerify logo drawn with BVG"/> + </ProjectEntry> + + <ProjectEntry name={'vib'} description={'Building docker images using yaml recipes, written in golang'} + projType={'Maintainer, Collaboration'} link={'https://vib.vanillaos.org'}/> + + <ProjectEntry name={'Vanilla System Operator'} description={'Tool to manage Vanilla OS installations, including Waydroid app management'} + projType={'Collaboration'} link={'https://github.com/vanilla-os/vanilla-system-operator'}/> + + <ProjectEntry name={'FsGuard'} description={'File tree based Filesystem integrity verification, fully written in go and used by Vanilla OS through fswarn'} + projType={'Maintainer, Personal Project'} link={'https://github.com/linux-immutability-tools/fsguard'}/> + + <ProjectEntry name={'jade'} description={'Installer backend for Crystal Linux, written in rust'} + projType={'Collaboration / Personal Project'} link={'https://gitlab.com/crystal-linux/software/jade'}/> + + <ProjectEntry name={'jade-gui'} description={'Graphical frontend for Jade, written in python using gtk4 and libadwaita'} + projType={'Collaboration / Personal Project'} link={'https://gitlab.com/crystal-linux/software/jade-gui'}/> + + <ProjectEntry name={'JshipIT'} description={'OCI client written in Java similiar to podman/docker with a focus on using containers as a form of isolated environments, similiar to Distrobox and Toolbx'} + projType={'Personal Project'} link={'https://github.com/axtloss/JshipIT'}/> +</page> + +<style lang="scss"> + @use 'sass:color'; + img { + display: block; + margin-left: auto; + margin-right: auto; + border-radius: 10px 10px 10px 10px; + box-shadow: 0 1px 4px 1px color.change(black, $alpha: 0.13), + 0 1px 10px 5px color.change(black, $alpha: 0.09), + 0 3px 16px 8px color.change(black, $alpha: 0.04), + 0 0 0 1px color.change(black, $alpha: 0.05); + } +</style> |