diff options
| author | netop://ウィビ <paul@webb.page> | 2026-06-16 16:49:33 -0700 |
|---|---|---|
| committer | netop://ウィビ <paul@webb.page> | 2026-06-16 16:49:33 -0700 |
| commit | 70c3afa03ff4d99d366500e7addbe2e29779a3f1 (patch) | |
| tree | d705cfeedc7eb613bfb962fb54bf5c3c4e24bfa6 /src/lib/component/Project.svelte | |
| parent | f606f5572883e84ffceaf2b67c763946cab868db (diff) | |
| download | homepage-70c3afa03ff4d99d366500e7addbe2e29779a3f1.tar.gz homepage-70c3afa03ff4d99d366500e7addbe2e29779a3f1.zip | |
adds blog posts and updates projects
Diffstat (limited to '')
| -rw-r--r-- | src/lib/component/Project.svelte | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/src/lib/component/Project.svelte b/src/lib/component/Project.svelte index 024045e..c27b1d4 100644 --- a/src/lib/component/Project.svelte +++ b/src/lib/component/Project.svelte @@ -27,7 +27,7 @@ content: `<p>In 2019 I was sick of using SemVer so I made something better (for me). Check it out at <a href="https://chronver.org?ref=webb.page">chronver.org</a>!</p>`, id: "009", media: [ - "/images/projects/chronver.jpg" + "/images/projects/chronver.png" ], tagline: "chronologic/calendar-based versioning system", title: "ChronVer" @@ -36,12 +36,21 @@ content: `<p>I didn’t like the way things were being run on <a href="https://archive.is/vpZCG?ref=webb.page" target="_blank">the Handshake blockchain</a> but <a href="https://archive.is/TMycF?ref=webb.page" target="_blank">I believe in the vision</a> so I made my own. Dap is the better handshake and it’s entering testnet soon.</p><p>Check it out at <a href="https://dap.sh?ref=webb.page">dap.sh</a>!</p>`, id: "010", media: [ - "/images/projects/dap.jpg" + "/images/projects/dap.png" ], tagline: "a secure foundation for the neue internet", title: "Dap" }, { + content: `<p>My favorite database was no more so I set out to make my own, with enhanced features and improved DX.</p><p>Check it out at <a href="https://disc.sh?ref=webb.page">disc.sh</a>!</p>`, + id: "011", + media: [ + "/images/projects/disc.png" + ], + tagline: "the database for users", + title: "Disc" + }, + { content: "<p>In 2014 I had the idea for a “responsive operating system” that could run on any device from a Raspberry Pi to a desktop PC.</p><p>There's no reason why a neat OS GUI shouldn't look as good as anime interfaces.</p>", id: "003", media: [ @@ -64,7 +73,7 @@ content: `<p>I just want a place to upload my Fortnite clips and <del>fuck</del> <em>I'm not a fan of</em> Google. No other platform out there makes sense either so once again, I gotta build what I want to use.</p><p>Check it out at <a href="https://nickel.video?ref=webb.page">nickel.video</a>!</p>`, id: "005", media: [ - "/images/projects/nickel_01.jpg" + "/images/projects/nickel.png" ], tagline: "short-form video platform", title: "Nickel" @@ -89,14 +98,14 @@ content: `<p>After I learned about <a href="https://evilmartians.com/chronicles/oklch-in-css-why-quit-rgb-hsl?ref=webb.page" target="_blank">the OKLCH color space</a> and saw how much more vibrant colors were than HEX, I delved into creating the perfect color palette for me. I spent nearly a year copy/pasting my CSS variables in my projects until I decided to have a unified place for them.</p><p><em>For some reason</em> <a href="https://news.ycombinator.com/item?id=43072338?ref=webb.page" target="_blank">my post on HackerNews</a> about uchū got super popular, which was neat. 600+ points and 900+ Github stars is wild. A handful of weirdos got irate, which was…alarming. Maybe touch grass?</p><p>Check out the site at <a href="https://uchu.style?ref=webb.page" target="_blank">uchu.style</a>!</p>`, id: "008", media: [ - "/images/projects/uchu_01.jpg" + "/images/projects/uchu.png" ], tagline: "the color palette for internet lovers", title: "uchū" } ]; - let activeProject = "005"; + let activeProject = "011"; </script> <style lang="scss"> |