Skip to content

Commit

Permalink
Merge pull request #7 from StanfordACM/quant-gym
Browse files Browse the repository at this point in the history
Quant gym
  • Loading branch information
EricCui2005 authored Nov 12, 2024
2 parents 3eacfd9 + bca372c commit fbdd3c2
Show file tree
Hide file tree
Showing 5 changed files with 71 additions and 9 deletions.
3 changes: 3 additions & 0 deletions components/navigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,9 @@ export default function Navigation({ pageName }: { pageName: string }) {
>
poker tournament
</NavigationLink>
<NavigationLink selected={pageName === 'quantGym'} href="/quantGym">
quant gym
</NavigationLink>
</Links>
</Sidebar>
);
Expand Down
12 changes: 12 additions & 0 deletions components/quant.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import styled from 'styled-components';

import { Title } from './section';

const MainTitle = styled(Title)`
font: 36px/1 ${({ theme }) => theme.fonts.mono};
font-weight: bold;
`;

export function QuantTitle() {
return <MainTitle>🏋️ Quant Gym 🏋️</MainTitle>;
}
16 changes: 7 additions & 9 deletions pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,21 +76,19 @@ export default function About() {
and engaging opportunity for high school students in the Bay Area to
explore their passion in computer science.
</Paragraph>
<Paragraph>
<b>Date:</b> May 4, 2024
<br />
<b>Time:</b> 9 AM
<br />
<b>Location:</b> Sapp Center for Science Teaching and Learning
<br />
<b>Deadline to sign up:</b> Wednesday, May 1<br />
</Paragraph>

<SectionTitle href="/puzzleHunt">Puzzlehunt</SectionTitle>
<Paragraph>
ACM hosts a puzzle hunt open to all Stanford students. We invite you
to solve puzzles as quickly as possible for prizes while having fun!
</Paragraph>

<SectionTitle href="/quantGym">Quant Gym</SectionTitle>
<Paragraph>
Quant Gym is Stanford ACMs premier quantitative trading training
program. Get ready to flex those mind muscles, and let&apos;s work
together to practice our skills and ACE the interviews 😤.
</Paragraph>
</Section>
</Layout>
);
Expand Down
49 changes: 49 additions & 0 deletions pages/quantGym.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
import Image from 'next/image';
import styled from 'styled-components';

import Layout from '../components/layout';
import { QuantTitle } from '../components/quant';
import { LinkComponent, Paragraph, Section } from '../components/section';

const Center = styled.div`
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 40px;
`;

export default function QuantGym() {
return (
<Layout title="Quant Gym" pageName="quantGym">
<Section>
<QuantTitle />
<Center>
<Image
src="/quantGym/greenbook.png"
alt="Puzzle Hunt"
style={{ borderRadius: '5px' }}
width={350}
height={336}
/>
</Center>
<Paragraph>
Quant Gym is Stanford ACM&apos;s premier quantitative trading training
program. The key to getting a Quant Job is to practice Quant
Questions, so get ready to flex those mind muscles. Let&apos;s work
together to practice our skills and <b>ACE</b> the interviews 😤!
</Paragraph>
<Paragraph>
<b>Time: </b> Fridays 5 PM <br />
<b>Location: </b> STLC 114 <br />
</Paragraph>
<Paragraph>
(If you are interested in partnering with us, please email{' '}
<LinkComponent href="mailto:[email protected]">
[email protected]
</LinkComponent>{' '}
to discuss details.)
</Paragraph>
</Section>
</Layout>
);
}
Binary file added public/quantGym/greenbook.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit fbdd3c2

Please sign in to comment.