Skip to content
Merged
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
Binary file removed apps/main/public/guest-speaker/guest.png
Binary file not shown.
Binary file added apps/main/public/guest-speakers/Jessica.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/main/public/guest-speakers/Sue.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions apps/main/public/sponsor-logos/MavenAGILogo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 16 additions & 4 deletions apps/main/src/app/(landing)/Sections/About.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,30 +18,42 @@ export default function About(): React.ReactNode {
</div>

{
<div className="absolute w-[160vw] h-auto top-[20%] left-[80%]">
<div className="absolute w-[160vw] h-auto top-[20%] left-[80%]" style={{
transform: isMobile
? "translate(-15vw, 8vh)"
: "",
}}>
<YellowBear />
</div>
}

<div className="mt-[15vh] mobile:mt-20 flex desktop:flex-row mobile:flex-col mobile:items-center items-start justify-center scale-125">
<div className="relative flex h-auto mobile:w-3/5">
<p className="text-charcoalFogDark mobile:text-xs font-DMSans-Regular absolute h-full mobile:p-12 desktop:py-20 desktop:px-16 desktop-xl:py-20 desktop-xl:px-16 self-center">
<p className="z-10 text-charcoalFogDark mobile:text-xs font-DMSans-Regular absolute h-full mobile:-mr-16 desktop:py-20 desktop:px-16 desktop-xl:py-20 desktop-xl:px-16 self-center">
We&apos;re a non-profit organization in the Boston area that
organizes an annual undergraduate hackathon. Our goal is to expand
and nurture the hacker culture that exists in Boston and the
surrounding areas. We connect students and other aspiring nerds to
their colleagues so that they can meet new people, learn new things,
and have a great time.
</p>
<TextBackground />
<TextBackground style={{
transform: isMobile
? "translate(10vw, 8vh) scale(1.2)"
: "",
}}/>
</div>

<div className="flex mobile:-mt-16 mobile:-ml-0 desktop:-ml-14 desktop:mt-8 transform mobile:scale-[50%] mobile:items-center">
<TeamPicture />
</div>
</div>

<div className="absolute w-[160vw] h-auto top-[68%] left-[46%] mb-10">
<div className="absolute w-[160vw] h-auto top-[68%] left-[46%] mb-10" style={{
transform: isMobile
? "translate(-20vw, 8vh)"
: "",
}}>
<PurpleBear />
</div>

Expand Down
Loading