Skip to content
Merged

Main #415

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions src/components/PrizesChallenges/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,18 +93,18 @@ const PrizesChallenges: React.FC = () => {
/>
<AwardBox
title="Best UX/UI Design"
description="Create an accessible and user-friendly interface that presents information in ways that can be perceived, operated, and understood by a wide variety of users and assistive technologies. Consider adjustable color contrast, font sizes, video captions, and robust content interpretation."
description="Create a project where the user interface is accessible, functional, and intuitive. Information can be perceived in multiple ways, such as adjustable color contrast, font size, or captions. Navigation is operable and user-friendly. Content is understandable and robust across devices and assistive technologies."
prizes={[
{
place: "Prize",
amount:
"Peraton swag + Beats Headphones per team member",
"Peraton swag bag and Beats Headphones for each team member",
},
]}
/>
<AwardBox
title="Nittany AI Challenge"
description="Use the power of artificial intelligence to address a problem in the fields of Health, Humanitarianism, Education, Environment, and/or Agriculture."
description="Use the power of AI to address real-world problems in: Health, Humanitarianism, Education, Environment, and Agriculture."
prizes={[
{
place: "1st Place",
Expand All @@ -119,8 +119,9 @@ const PrizesChallenges: React.FC = () => {
amount: "$25 Amazon Gift Card per team member (up to 5)",
},
]}
extra="Total prize pool: $870 in cash"
/>

</div>
) : (
<div className="w-full">
Expand Down
3 changes: 2 additions & 1 deletion src/lib/api/judging/entity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ export interface ProjectCreateEntity
export interface ProjectPatchEntity extends Partial<ProjectCreateEntity> {}

export const PROJECT_CATEGORIES = [
"Beginner Track",
"Best UX/UI Design",
"Nittany AI Challenge",
] as const;

export type ProjectCategory = (typeof PROJECT_CATEGORIES)[number];
Expand Down