diff options
| author | Pinapelz <yukais@pinapelz.com> | 2023-10-21 00:11:24 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2023-10-21 00:11:24 -0700 |
| commit | 91231b2d24a04ad8aee18323b2818a40169befe8 (patch) | |
| tree | fdfcbc6ceba3acdb2aa98f7178fb0adc187a7cf4 /src/components/ProjectGrid.astro | |
| parent | e7a9e9aa9a848b2ac2dc94ebdd0ea54a7e7ef922 (diff) | |
change landing page
- remove projects, moved to main site
this is now strictly a blog
Diffstat (limited to 'src/components/ProjectGrid.astro')
| -rw-r--r-- | src/components/ProjectGrid.astro | 110 |
1 files changed, 0 insertions, 110 deletions
diff --git a/src/components/ProjectGrid.astro b/src/components/ProjectGrid.astro deleted file mode 100644 index e0817a9..0000000 --- a/src/components/ProjectGrid.astro +++ /dev/null @@ -1,110 +0,0 @@ -<style> - .project-grid { - display: grid; - grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); - gap: 20px; - } - - .project { - background-color: #292828; - padding: 20px; - border-radius: 8px; - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); - text-align: center; - transition: transform 0.3s ease-in-out; - } - - .project:hover { - transform: translateY(-5px) rotateX(10deg); - } - - .project img { - max-width: 100%; - height: auto; - border-radius: 4px; - margin-bottom: 10px; - } - - .project-grid .project p.project-text, - .project-grid a{ - text-decoration: none; - font-size: 14px; - line-height: 1.4; - color: #FFFFFF; - } - - .project-grid .project p.project-title{ - font-size: 18px; - line-height: 1; - } - - img { - max-height: 100px; - } - - @media (max-width: 768px) { - .project-grid { - grid-template-columns: repeat(1, 1fr); - } - } -</style> - -<div class="project-grid"> - <div class="project"> - <a href="https://nijitracker.com" > - <img src="/projects/nijitrack.png" alt="Nijitrack Logo"> - </a> - <p class="project-title">NijiTrack</p> - <p class="project-text"> - Record and track historical subscriber data for a set of YouTube channels. - Currently mine is set up to record data for Nijisanji Virtual YouTubers (Nijitracker link on repo). - </p> - </div> - <div class="project"> - <a href="https://archive.pinapelz.moe"> - <img src="/projects/patchwork.png" alt="Patchwork Logo"> - </a> - <p class="project-title">Video Archive Web (Patchwork Archive)</p> - <p class="project-text"> - A Python Flask web app that can host archived YouTube videos, currently used as the - front end for Patchwork Archive (link on repo). - </p> - </div> - <div class="project"> - <a href="https://github.com/pinapelz/JHolodex"> - <img src="/projects/holodex.png" alt="JHolodex Wrapper"> - </a> - <p class="project-title">JHolodex</p> - <p class="project-text"> - A Java object oriented wrapper for the Holodex API - </p> - </div> - <div class="project"> - <a href="https://github.com/pinapelz/Sapphire"> - <img src="https://www.gitbook.com/cdn-cgi/image/width=40,dpr=2,height=40,fit=contain,format=auto/https%3A%2F%2F1852825540-files.gitbook.io%2F~%2Ffiles%2Fv0%2Fb%2Fgitbook-x-prod.appspot.com%2Fo%2Fspaces%252FoWEO5F5fxBARvfBEby5l%252Ficon%252F9jUvxgDCe6egTrCyJ8t5%252Fsapphire_logo.png%3Falt%3Dmedia%26token%3D4e1ce138-1a38-4e5c-a9f8-490b24189b57" alt="Sapphire"> - </a> - <p class="project-title">Project Sapphire</p> - <p class="project-text"> - My fork of Sapphire, a C++ Final Fantasy XIV Server Emulator. Most of the work I've done - is pretaining to scripting content - </p> - </div> - <div class="project"> - <a href="https://github.com/pinapelz/yet-another-lavaplayer-bot"> - <img src="https://www.svgrepo.com/show/353655/discord-icon.svg" alt="YALP Bot"> - </a> - <p class="project-title">Yet Another Lavaplayer Bot</p> - <p class="project-text"> - A Discord music bot written in Java using JDA and Lavaplayer - </p> - </div> - <div class="project"> - <a href="https://github.com/pinapelz/ytmp3AutoTag"> - <img src="projects/github-mark-white.svg" alt="ytmp3 Autotag"> - </a> - <p class="project-title">GitHub</p> - <p class="project-text"> - GitHub is where I store the majority of the code I write! There's a bunch of stuff over there if you're interested - </p> - </div> -</div>
\ No newline at end of file |
