diff --git a/pages/about/index.module.css b/pages/about/index.module.css index 0f7b157e..cee87808 100644 --- a/pages/about/index.module.css +++ b/pages/about/index.module.css @@ -1,3 +1,7 @@ +.page { + margin-bottom: calc(20rem / 16); +} + .title { height: calc(80rem / 16); margin-top: auto; @@ -31,33 +35,6 @@ height: calc(400rem / 16); } -/*for temp mailing list components*/ -.mailingList { - margin: calc(4rem / 16) auto; - max-width: calc(806rem / 16); -} - -.mailingList form > * { - margin: calc(0.5rem / 16) auto; -} - -.mailingList form input { - border-radius: calc(16rem / 16); - padding: calc(8rem / 16) 0; -} - -.mailingList form input[type="text"] { - /*temporary hard coding of font*/ - font-family: Poppins; - font-style: normal; - padding: 0 calc(8rem / 16); -} - -.mailingList h2 { - color: var(--blue-2); -} -/*for temp mailing list components*/ - @media only screen and (max-width: calc(768rem / 16)) { .titleContainer { display: flex; diff --git a/pages/about/index.tsx b/pages/about/index.tsx index 2cb13ffd..0a018ccc 100644 --- a/pages/about/index.tsx +++ b/pages/about/index.tsx @@ -2,8 +2,9 @@ import React from "react"; import { Image } from "../../components/Image"; import Content from "../../content/about/index.mdx"; import styles from "./index.module.css"; -import { Button } from "../../components/Button"; -import { SocialLinks } from "../../components/SocialLinks"; +import { ConnectWithUs } from "components/ConnectWithUs"; +import { EmailSignup } from "components/EmailSignup"; +import { DefaultLayout } from "components/DefaultLayout"; export default function AboutUs() { return ( @@ -15,29 +16,14 @@ export default function AboutUs() {
-
-

Connect with us!

-

- Drop by any of our social media outlets to learn more about us, keep - up-to-date with our upcoming events, or to chat with our members! -

- -

Send feedback through our Feedback Form

-

Join our Mailing List!

-
-
- -
-
- -
- -
-
+ + + + ); } AboutUs.Layout = function AboutUsLayout(props: { children: React.ReactNode }) { - return
{props.children}
; + return
{props.children}
; };