-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feat/1062-workshops-page
- Loading branch information
Showing
26 changed files
with
1,475 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
[ | ||
{ | ||
"discordUsername": "AJAreYouThere", | ||
"day": 7, | ||
"year": 2024, | ||
"prompt": "Design settings for something.", | ||
"imageSrc": "/design_gallery/AJAreYouThere_day7.png" | ||
}, | ||
{ | ||
"discordUsername": "bergerboyyy", | ||
"day": 25, | ||
"year": 2024, | ||
"prompt": "Create a New Capy Discord Banner.", | ||
"imageSrc": "/design_gallery/bergerboyyy_day25.svg" | ||
}, | ||
{ | ||
"discordUsername": "bergerboyyy", | ||
"day": 4, | ||
"year": 2024, | ||
"prompt": "Design a calculation element or interface.", | ||
"imageSrc": "/design_gallery/bergerboyyy_day4.svg" | ||
}, | ||
{ | ||
"discordUsername": "cheppies", | ||
"day": 12, | ||
"year": 2024, | ||
"prompt": "Design a Poster for a product.", | ||
"imageSrc": "/design_gallery/cheppies_day12.png" | ||
}, | ||
{ | ||
"discordUsername": "cheppies", | ||
"day": 9, | ||
"year": 2024, | ||
"prompt": "Design a music player.", | ||
"imageSrc": "/design_gallery/cheppies_day9.png" | ||
}, | ||
{ | ||
"discordUsername": "demonicgoat", | ||
"day": 3, | ||
"year": 2024, | ||
"prompt": "Design a Landing Page!", | ||
"imageSrc": "/design_gallery/demonicgoat_day3.svg" | ||
}, | ||
{ | ||
"discordUsername": "kroizzont", | ||
"day": 3, | ||
"year": 2024, | ||
"prompt": "Design a Landing Page!", | ||
"imageSrc": "/design_gallery/kroizzont_day3.png" | ||
}, | ||
{ | ||
"discordUsername": "semsema", | ||
"day": 14, | ||
"year": 2024, | ||
"prompt": "Design a Countdown Timer.", | ||
"imageSrc": "/design_gallery/semsema_day14.png" | ||
}, | ||
{ | ||
"discordUsername": "surrealreal_", | ||
"day": 12, | ||
"year": 2024, | ||
"prompt": "Design a Poster for a product.", | ||
"imageSrc": "/design_gallery/surrealreal__day12.png" | ||
}, | ||
{ | ||
"discordUsername": "t_1907", | ||
"day": 2, | ||
"year": 2024, | ||
"prompt": "Design a credit card checkout form.", | ||
"imageSrc": "/design_gallery/t_1907_day2.png" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import type { DesignGalleryEntry } from '../types'; | ||
import ENTRIES_JSON from './entries.json'; | ||
|
||
export const ENTRIES = ENTRIES_JSON as DesignGalleryEntry[]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export * from './types'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
export interface DesignGalleryEntry { | ||
discordUsername: string; | ||
day: number; | ||
year: number; | ||
prompt: string; | ||
imageSrc: string; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
<script lang="ts"> | ||
import Block from '$lib/components/block/block.svelte'; | ||
import Spacing from '$lib/public/legacy/spacing.svelte'; | ||
import { ENTRIES } from '$lib/public/design-gallery/data'; | ||
</script> | ||
|
||
<svelte:head> | ||
<title>Design Gallery | ACM at CSUF</title> | ||
</svelte:head> | ||
|
||
<Spacing --min="175px" --med="200px" --max="200px" /> | ||
<Block> | ||
<h1 slot="headline" class="size-xl acm-heavier">Design Gallery | Summer 2024</h1> | ||
|
||
<p slot="text" class="size-md"> | ||
The Summer Design Challenge, hosted by our Design Team, allows for fellow members to practice | ||
and show off their design skills using Figma while enjoying their summer vacation. Here are ten | ||
professional designs. You can check out more designs in our Discord server in the #🎨design-chat | ||
channel. | ||
</p> | ||
</Block> | ||
|
||
<ul> | ||
{#each ENTRIES as { day, imageSrc, discordUsername, prompt }} | ||
<li> | ||
<img src={imageSrc} alt="Design by @{discordUsername} day {day}" /> | ||
<h2>Day {day} by <span class="acm-pink">@{discordUsername}</span></h2> | ||
<p class="size-md">Prompt: {prompt}</p> | ||
</li> | ||
{/each} | ||
</ul> | ||
|
||
<Spacing --min="175px" --med="200px" --max="200px" /> | ||
|
||
<style> | ||
ul { | ||
list-style: none; | ||
display: flex; | ||
flex-direction: row; | ||
flex-wrap: wrap; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
ul > li { | ||
margin: 15px; | ||
text-align: center; | ||
width: min(600px, 80vw); | ||
} | ||
img { | ||
width: 100%; | ||
height: 40vh; | ||
object-fit: contain; | ||
} | ||
@media (max-width: 768px) { | ||
li * { | ||
font-size: 18px; /* Smaller font size for mobile */ | ||
} | ||
img { | ||
height: 100%; | ||
} | ||
} | ||
img:hover { | ||
opacity: 0.5; | ||
} | ||
h1 { | ||
text-align: center; | ||
margin-bottom: 2rem; | ||
} | ||
h2 { | ||
text-align: center; | ||
margin-bottom: 0.5rem; | ||
} | ||
p { | ||
text-align: center; | ||
margin-bottom: 2rem; | ||
margin-left: 1rem; | ||
margin-right: 1rem; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.