diff --git a/components/navigation.tsx b/components/navigation.tsx index 248d008..9a85348 100644 --- a/components/navigation.tsx +++ b/components/navigation.tsx @@ -133,6 +133,9 @@ export default function Navigation({ pageName }: { pageName: string }) { > poker tournament + + quant gym + ); diff --git a/pages/quantGym.tsx b/pages/quantGym.tsx new file mode 100644 index 0000000..f0953e9 --- /dev/null +++ b/pages/quantGym.tsx @@ -0,0 +1,32 @@ +import Layout from '../components/layout'; +import { + LinkComponent, + Paragraph, + Section, + Title +} from '../components/section'; + +export default function QuantGym() { + return ( + +
+ QuantGym + + Quant Gym is Stanford ACM's premier quantitative analyst training + program. Get ready to flex those muscles! + + + To get in touch, send us an email at{' '} + + acm-members-owners@lists.stanford.edu + {' '} + and we'll follow up! Or simply join our{' '} + + mailing list + + . + +
+
+ ); +}