diff --git a/microsite-next/src/pages/nominate/index.tsx b/microsite-next/src/pages/nominate/index.tsx new file mode 100644 index 0000000000..58ff1dcef4 --- /dev/null +++ b/microsite-next/src/pages/nominate/index.tsx @@ -0,0 +1,27 @@ +import React from 'react'; + +import nominateStyles from './nominate.module.scss'; +import Layout from '@theme/Layout'; +import clsx from 'clsx'; +import { BannerSection } from '@site/src/components/bannerSection/bannerSection'; +import { BannerSectionGrid } from '../../components/bannerSection/bannerSectionGrid'; +import { ContentBlock } from '@site/src/components/contentBlock/contentBlock'; + +const Nominate = () => { + return ( + +
+ + Contributor Spotlight nomination}> + + + +
+
+ ); +}; + +export default Nominate; diff --git a/microsite-next/src/pages/nominate/nominate.module.scss b/microsite-next/src/pages/nominate/nominate.module.scss new file mode 100644 index 0000000000..cdec103a8a --- /dev/null +++ b/microsite-next/src/pages/nominate/nominate.module.scss @@ -0,0 +1,32 @@ +.nominatePage { + font-size: 1.25rem; + + &, + & > section, + & > section > div { + flex: 1; + display: flex; + flex-direction: column; + } + + & > section > div > div { + flex: 1; + grid-template-rows: auto 1fr; + } + + h1 { + font-size: 54px; + line-height: 56px; + word-break: break-word; + } + + p { + text-align: justify; + } + + iframe { + width: 100%; + height: 100%; + min-height: 400px; + } +}