-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from StanfordACM/quant-gym
Quant gym
- Loading branch information
Showing
5 changed files
with
71 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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>; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'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'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> | ||
); | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.