Skip to content
Open
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
5 changes: 5 additions & 0 deletions .husky/pre-commit
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

export PATH="/Users/angieche/.nvm/versions/node/v24.10.0/bin:$PATH"

yarn build
yarn format
yarn lint
78 changes: 41 additions & 37 deletions apps/live/src/app/(landing)/Judging/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import React from "react";
import useDevice from "@util/hooks/useDevice.ts";
import JudgingTicketBooth from "../../lib/Assets/SVG/Judging/JudgingTicketBooth.tsx"
import JudgingTicketBooth from "../../lib/Assets/SVG/Judging/JudgingTicketBooth.tsx";
import JudgingLiveBackground from "../../lib/Assets/SVG/Judging/JudgingLiveBackground.tsx";
import JudgingLiveFireworks from "../../lib/Assets/SVG/Judging/JudgingLiveFireworks.tsx";
import FrontGreenWave from "../../lib/Assets/SVG/Judging/FrontGreenWave.tsx";
Expand All @@ -12,55 +12,59 @@ import BackBush from "../../lib/Assets/SVG/Judging/BackBush.tsx";
import CarnivalTitle from "@repo/ui/CarnivalTitle";

export default function Judging(): React.ReactNode {
const { isMobile} = useDevice();

return (
<div className="relative w-full min-h-screen z-10 bg-mossGreen">
<JudgingLiveBackground className = {`absolute inset-0 w-full h-auto overflow-hidden`}/>

<div className={`relative w-full overflow-hidden ${
isMobile ? "aspect-[1]" : "aspect-[1]"
}`}>
const { isMobile } = useDevice();

return (
<div className="relative w-full min-h-screen z-10 bg-mossGreen">
<JudgingLiveBackground
className={`absolute inset-0 w-full h-auto overflow-hidden`}
/>

<div
className={`relative w-full overflow-hidden ${
isMobile ? "aspect-[1]" : "aspect-[1]"
}`}
>
<JudgingLiveFireworks
className={`absolute inset-0 w-full h-auto overflow-hidden`}
/>

<JudgingLiveFireworks className = {`absolute inset-0 w-full h-auto overflow-hidden`}/>

<h1
className="absolute left-1/2 -translate-x-1/2 font-NeulisNeue-Bold text-marigoldYellow flex flex-col items-center"
style={{
fontSize: isMobile ? "2.8vw" : "1.7vw",
top: isMobile ? "40%" : "30%"
}}
>
Come back after submissions close<br/>
to see where you will be demoing!
className="absolute left-1/2 -translate-x-1/2 font-NeulisNeue-Bold text-marigoldYellow flex flex-col items-center"
style={{
fontSize: isMobile ? "2.8vw" : "1.7vw",
top: isMobile ? "40%" : "30%",
}}
>
Come back after submissions close
<br />
to see where you will be demoing!
</h1>
<div className = "absolute top-[20%] left-1/2 -translate-x-1/2 w-[85vw] h-auto" >
<CarnivalTitle text="Judging" />

<div className="absolute top-[20%] left-1/2 -translate-x-1/2 w-[85vw] h-auto">
<CarnivalTitle text="Judging" />
</div>

<div className = "absolute bottom-1/4 left-1/2 -translate-x-1/2 z-20 w-[55vw] h-auto" >
<JudgingTicketBooth />
<div className="absolute bottom-1/4 left-1/2 -translate-x-1/2 z-20 w-[55vw] h-auto">
<JudgingTicketBooth />
</div>

<div className = "absolute bottom-[4%] left-1/2 -translate-x-1/2 z-10 w-[30vw] h-auto" >
<JudgingRoad />
<div className="absolute bottom-[4%] left-1/2 -translate-x-1/2 z-10 w-[30vw] h-auto">
<JudgingRoad />
</div>

<div className = "absolute bottom-[23%] left-[20%] -translate-x-1/2 z-20 w-[20vw] h-auto" >
<BackBush />
<div className="absolute bottom-[23%] left-[20%] -translate-x-1/2 z-20 w-[20vw] h-auto">
<BackBush />
</div>

<div className = "absolute bottom-[10%] left-[53%] translate-x-1/3 z-20 w-[30vw] h-auto" >
<FrontBush />
<div className="absolute bottom-[10%] left-[53%] translate-x-1/3 z-20 w-[30vw] h-auto">
<FrontBush />
</div>

<FrontGreenWave
className={`absolute bottom-[15%] left-1/2 -translate-x-1/2 h-auto ${isMobile ? "w-[100vw]" : "w-[100vw]"}`}
/>

</div>
</div>
);
}
</div>
);
}
14 changes: 11 additions & 3 deletions apps/live/src/app/(landing)/OurTeam/OurTeamGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ const TeamTable = () => {
const iconGridStyles = clsx(
"flex flex-wrap justify-center items-center mx-auto gap-6",
isDesktop && "w-3/4",
isMobile && "grid grid-cols-2"
isMobile && "grid grid-cols-2",
);

return (
Expand All @@ -222,7 +222,9 @@ const TeamTable = () => {
key={team.toString()}
onClick={() => changeTeam(teamName as keyof typeof teams)}
className={`py-2 px-3 transition-transform duration-300 transform scale-100 hover:scale-[102%] rounded-xl font-NeulisNeue-Bold text-[20px] ${
currTeam === teamName ? "bg-firecrackerRed" : "border border-white"
currTeam === teamName
? "bg-firecrackerRed"
: "border border-white"
}`}
>
{teamName.toString()}
Expand All @@ -236,7 +238,13 @@ const TeamTable = () => {
href={member.url}
className="transition-transform scale-100 hover:scale-105"
>
<Icon src={member.src} name={member.name} isLive={false} isActive={false} textColor="white" />
<Icon
src={member.src}
name={member.name}
isLive={false}
isActive={false}
textColor="white"
/>
</a>
))}
</div>
Expand Down
3 changes: 1 addition & 2 deletions apps/live/src/app/(landing)/OurTeam/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default function OurTeam(): React.ReactNode {
const ribbonStyles = clsx(
isDesktop && "scale-100",
isTablet && "scale-75",
isMobile && "scale-[60%]"
isMobile && "scale-[60%]",
);

const blurbStyles = clsx(
Expand All @@ -44,6 +44,5 @@ export default function OurTeam(): React.ReactNode {
<OurTeamGrid />
</div>
</div>

);
}
2 changes: 1 addition & 1 deletion apps/main/src/app/(landing)/Sections/FAQ.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const logisticsQuestions = [
{
question: "Will there be overnight accommodations?",
answer:
"HackBeanpot is a three day long event, beginning on Friday, February 11th and ending on Sunday, February 13th.",
"Unfortunately, we’re not able to provide overnight accomodations for HackBeanpot 2026.",
},
{
question: "Will food be provided?",
Expand Down
7 changes: 6 additions & 1 deletion apps/main/src/app/sponsors/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,12 @@ function makeSponsorRow(
>
{ticketSizes.map((width, i) =>
logos?.[i] === PureButton ? (
<Link target="_blank" key={i} href="https://mlh.link/MLH-PureButtons-hackathons" className="relative z-10 block">
<Link
target="_blank"
key={i}
href="https://mlh.link/MLH-PureButtons-hackathons"
className="relative z-10 block"
>
<SponsorTicketComp
key={i}
isSponsorUs={false}
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/src/Icons/MemberIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const Icon: React.FC<IconProps> = ({
url,
isLive = false,
isActive = false,
textColor = "charcoalFog"
textColor = "charcoalFog",
}) => {
return (
<div className="flex flex-col items-center relative">
Expand Down
Loading