Skip to content

Commit

Permalink
fix: misc. qa things (#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinWu098 authored Apr 9, 2024
1 parent b21d839 commit 185ccfc
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[
{
"name": "Cassandra Hoo",
"photo": "graphics/portraits/Cassandra_Hoo.svg",
"photo": "graphics/portraits/Cassandra_Hoo.png",
"role": "Senior UX Designer at the LEGO Group",
"about": "Cassandra Hoo is currently a Senior UX Designer at the LEGO Group. She is passionate about human centered design, deeply understanding users, accessibility, and the process of iteration. She has a Master's degree in Human Computer Interaction and Design from UC Irvine and a BFA in Writing from University of the Arts. In her free time she enjoys cuddling with her cat Pixel, going on adventures, and Pilates."
},
Expand Down
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 @@ -77,7 +77,7 @@ const FAQ = () => {
},
{
q: "How much does it cost?",
a: "You Belong Here requires no cost to participate. All you need is a working device with Zoom, Discord, and an open mind.",
a: "True to You requires no cost to participate. All you need is a working device with Zoom, Discord, and an open mind.",
},
{
q: "When is the registration deadline?",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,13 @@ import { useRef } from "react";
import useNotecardLines from "./useNotecardLines";
import clsx from "clsx";

import close_icon from "../../assets/close_icon.svg";
// import close_icon from "../../assets/close_icon.svg";

const Notecard = ({ children, modalCard, lineAdjustment, toggleProfile }) => {
const Notecard = ({
children,
modalCard,
lineAdjustment /*, toggleProfile*/,
}) => {
const notecardRef = useRef(null);
const textRef = useRef(null);

Expand All @@ -20,14 +24,14 @@ const Notecard = ({ children, modalCard, lineAdjustment, toggleProfile }) => {
className={clsx(cn.noteCard, modalCard && cn.modalCard)}
ref={notecardRef}
>
{toggleProfile ? (
{/* {toggleProfile ? (
<button className={cn.close_button} onClick={toggleProfile}>
<img
src={close_icon}
alt="x icon to close notecard modal"
/>
</button>
) : null}
) : null} */}

<div className={cn.noteCardHeader} />

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ const Prizes = () => {
Honorable Mentions
</h6>
<p className={cn.prizeDetails}>
Voted by in-person participants.
Voted by Design at UCI Board.
</p>
</div>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,9 @@ const FridaySchedule = () => {
<div className={clsx(cn.info)}>
<div className={clsx(cn.titleContainer)}>
<div className={clsx(cn.title)}>Opening Ceremony</div>
<div className={cn.location}>Location of the Event</div>
<div className={cn.location}>
Crystal Cove Auditorium (Student Center)
</div>
</div>
<div className={cn.time}>5:00 PM → 6:00 PM</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ export const Modal = ({ toggleProfile, person }) => {
}, [toggleProfile]);

return (
<div className={clsx(cn.modal)}>
<Notecard modalCard={true} toggleProfile={toggleProfile}>
<div className={clsx(cn.modal)} onClick={toggleProfile}>
<Notecard modalCard={true} /*toggleProfile={toggleProfile}*/>
<div className={cn.popupContainer}>
<div className={cn.popupProfileContainer}>
<div className={cn.popupProfile}>
Expand Down

0 comments on commit 185ccfc

Please sign in to comment.