Skip to content

Commit

Permalink
Add some more contributors
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasohCHOM committed Sep 23, 2024
1 parent bfd9dc1 commit cc2ae1a
Show file tree
Hide file tree
Showing 6 changed files with 64 additions and 40 deletions.
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

44 changes: 27 additions & 17 deletions src/components/ContributorPopup.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
<div class="message">
{message}
</div>

<div class="bubble-1"></div>
<div class="bubble-2"></div>
<div class="bubble-3"></div>
Expand All @@ -58,22 +59,30 @@
</div>

<div class="right">
<div>
<h3>GitHub</h3>
<p>{githubUsername}</p>
</div>
<div>
<h3>About</h3>
<p>{about}</p>
</div>
<div>
<h3>Programming Interests</h3>
<p>{programmingInterests}</p>
</div>
<div>
<h3>Hobbies</h3>
<p>{hobbies}</p>
</div>
{#if githubUsername}
<div>
<h3>GitHub</h3>
<p>{githubUsername}</p>
</div>
{/if}
{#if about}
<div>
<h3>About</h3>
<p>{about}</p>
</div>
{/if}
{#if programmingInterests}
<div>
<h3>Programming Interests</h3>
<p>{programmingInterests}</p>
</div>
{/if}
{#if hobbies}
<div>
<h3>Hobbies</h3>
<p>{hobbies}</p>
</div>
{/if}
</div>
</div>
</div>
Expand Down Expand Up @@ -212,7 +221,8 @@
}
.card-layout > .right {
display: grid;
display: flex;
flex-direction: column;
gap: 0.25rem;
}
Expand Down
35 changes: 19 additions & 16 deletions src/components/Contributors.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -21,22 +21,24 @@

<section class="contributors">
{#each contributors as contributor, i}
<div
class="contributor"
on:click={() => openContributorDialog(i)}
on:keydown={() => openContributorDialog(i)}
role="button"
tabindex="0"
>
<img
class="profile-image"
src="https://github.com/{contributor.frontmatter.githubUsername}.png"
alt="ACM at CSUF Icon"
width={32}
height={32}
/>
<span>{contributor.frontmatter.name}</span>
</div>
{#if contributor}
<div
class="contributor"
on:click={() => openContributorDialog(i)}
on:keydown={() => openContributorDialog(i)}
role="button"
tabindex="0"
>
<img
class="profile-image"
src="https://github.com/{contributor.frontmatter.githubUsername}.png"
alt="ACM at CSUF Icon"
width={32}
height={32}
/>
<span>{contributor.frontmatter.name}</span>
</div>
{/if}
{/each}
</section>

Expand All @@ -61,6 +63,7 @@
font-size: 0.875rem;
font-weight: 500;
overflow-x: hidden;
white-space: nowrap;
}
.contributor:hover {
Expand Down
9 changes: 9 additions & 0 deletions src/contributors/fa24/adamcha.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
name: "Adam"
githubUsername: "adamchacs"
message: ""
about: ""
programmingInterests: ""
hobbies: ""
extraLink: ""
---
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
---
name: "Harrison Thayer"
githubUsername: "harrisonthayer04"
message: "Hi I'm Harrison, I'm a thirda year CS major at CSUF."
message: "Hi I'm Harrison, I'm a third year CS major at CSUF."
about: ""
programmingInterests: "Machine Learning / AI"
hobbies: "Gaming, Working Out"
extraLink: "https://www.linkedin.com/in/harrison-thayer-622b58241/"
---
---
6 changes: 4 additions & 2 deletions src/contributors/fa24/ttuyen22.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: "Tuyen Nguyen
---
name: "Tuyen Nguyen"
githubUsername: "ttuyen22"
message: "Hi!"
about: "I'm Tuyen; a second year studying computer engineer"
programmingInterest: "OSS, Algo"
programmingInterest: "OSS, Algo"
---

0 comments on commit cc2ae1a

Please sign in to comment.