diff options
| author | Pinapelz <donaldshan1@outlook.com> | 2025-05-27 16:16:07 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-27 16:16:07 -0700 |
| commit | 047ad73cdfe0c1b5268323cf74f695cfba1e838c (patch) | |
| tree | 5aee3bc92b15e12dd3478302bab89fc991497e27 | |
| parent | 65a38df02c1a9afd2f06bb7156799db9893662a4 (diff) | |
Delete old contrib page
| -rw-r--r-- | src/pages/contributions.astro | 103 |
1 files changed, 0 insertions, 103 deletions
diff --git a/src/pages/contributions.astro b/src/pages/contributions.astro deleted file mode 100644 index 6c5219c..0000000 --- a/src/pages/contributions.astro +++ /dev/null @@ -1,103 +0,0 @@ ---- -import Layout from "../layouts/Layout.astro"; -import SocialNavbar from "../components/SocialNavbar.astro"; -import Card from "../components/Card.astro"; ---- - -<Layout title="Contributions"> - <main> - <h1>Open Source Contributions</h1> - <p> - I love the idea of open source. Here are some of the projects I've contributed to. - </p> - - <ul role="list" class="link-card-grid"></ul> - - <section class="contributions-section"> - <ul role="list" class="contribution-card-grid"> - <Card - href="https://github.com/Patchwork-Archive" - title="Patchwork Archive" - body="Patchwork Archive aims to archive original songs and covers created by VTubers. With loss of content being a major issue in VTubing (due to termination and graduations), the goal of Patchwork Archive is to preserve a subset of VTuber content for preservation of culture." - contribution="Maintainer and creator of project" - language="Javascript" - languageColor="#f1e05a" - year="2023" - /> - <Card - href="https://github.com/pinapelz/Sapphire" - title="Sapphire" - body="Sapphire is a research implementation of the Final Fantasy XIV Online server. The purpose of Sapphire is to gain an understanding of how the retail game servers work internally." - contribution="Bug fixes + Reverse engineered and implemented quests" - language="C++" - languageColor="#f34b7d" - year="2023" - /> - <Card - href="https://github.com/EBro912/Holodex.NET" - title="Holodex.NET" - body="A C# wrapper for the Holodex API " - language="C#" - languageColor="#178600" - year="2023" - /> - <Card - href="https://github.com/icssc/AntAlmanac" - title="AntAlmanac" - body="A course exploration and scheduling tool for UCI Anteaters" - language="TypeScript" - languageColor="#2b7489" - year="2023" - /> - </ul> - </section> - </main> - - <SocialNavbar /> - - <style> - h1 { - font-size: 2.5rem; - margin-bottom: 1rem; - } - main { - margin: auto; - padding: 1rem; - max-width: 1200px; - color: white; - font-size: 20px; - line-height: 1.6; - } - .card-container { - display: flex; - justify-content: space-between; - flex-wrap: wrap; - } - .link-card-grid, - .contribution-card-grid { - display: grid; - grid-template-columns: repeat(3, minmax(24ch, 1fr)); - gap: 2rem; - padding: 0; - } - .contribution-card-grid { - grid-template-columns: 1fr; /* Each card takes up one row */ - } - .contributions-section { - margin-top: 2rem; - } - .contributions-section h2 { - font-size: 1.5rem; - margin-bottom: 1rem; - } - .mini-card { - margin: 10px 0; - } - @media (max-width: 1020px) { - .link-card-grid, - .contribution-card-grid { - grid-template-columns: 1fr; - } - } - </style> -</Layout> |
