Skip to content

Commit

Permalink
chore: update about, rules, faq (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinWu098 authored Apr 6, 2024
1 parent 2412cb9 commit 2f05ade
Show file tree
Hide file tree
Showing 5 changed files with 65 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"All members of your team must be an undergraduate college student with an associated institutional email.",
"Teams must not exceed 4 people total.",
"Each team may only submit one (1) submission which will be submitted on behalf of all other contributors.",
"All work submitted to You Belong Here must be original work. Any submissions with plagiarized work will be disqualified.",
"You may not submit work previously designed before You Belong Here. All designs must be made between the dates of February 24th, 2023 to February 26th, 2023.",
"All work submitted to True to You must be original work. Any submissions with plagiarized work will be disqualified.",
"You may not submit work previously designed before True to You. All designs must be made between the dates of May 17th - May 19th.",
"Late submissions will not be accepted.",
"If there are any adjustments made to your prototype after Sunday Feb 26th 8:00 am PST, you (and your team) will be penalized."
"If any adjustments are made after May 19th 2024 8:00 AM, your team’s submission will not count towards judging."
]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,12 @@ const About = () => {

<h2 className={cn.heading}>About</h2>

<Notecard lineAdjustment={1}>
<Notecard lineAdjustment={2}>
<div style={{ maxWidth: "95%" }}>
<p>
Design-a-thon is a 3 day long hybrid event where you or
a team design a product focused on the theme: community
and inclusivity. It takes place on February 24, starting
at 5:30 pm and ends February 26, 8:00 pm PST.
a team design a product focused on the theme: True to
You! It takes place on May 17th, and ends May 19th.
</p>
<p>
Design at UCI is the premier student-run organization at
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,13 @@
}
}

.star_lines {
position: absolute;
top: 0;
right: 0;
max-width: 30%;
}

@keyframes fadeIn {
0% {
opacity: 0;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
import cn from "./FAQ.module.scss";
import clsx from "clsx";

import { useCallback, useState } from "react";

import down_carat from "../../assets/graphics/faq/down_carat.svg";
import star_lines from "../../assets/graphics/faq/star_lines.svg";
import GridBackground from "../Backgrounds/GridBackground";

const FAQ = () => {
Expand All @@ -14,6 +16,12 @@ const FAQ = () => {
isLight={true}
/>

<img
src={star_lines}
alt=""
className={clsx(cn.star_lines, "wait flopR")}
/>

<h2 className={cn.heading}>FAQ</h2>
{/* <div className="spaceChildren">
<Text style={{ lineHeight: "1.4em" }}>
Expand Down

0 comments on commit 2f05ade

Please sign in to comment.