Skip to content

Commit

Permalink
Closing Mentor Applications (#719)
Browse files Browse the repository at this point in the history
* removing headers to prevent v5 navs. copy changes

* Fix code style issues with ESLint

* Fix code style issues with stylelint

* fixing copy typo

* Fix code style issues with ESLint

* Update beAMentorForm.js

another typo

* Update beAMentorForm.js

more typos

Co-authored-by: Lint Action <lint-action@samuelmeuli.com>
  • Loading branch information
camposcristian and lint-action authored Dec 22, 2020
1 parent 02d1b9e commit e34ebfc
Show file tree
Hide file tree
Showing 6 changed files with 62 additions and 56 deletions.
84 changes: 42 additions & 42 deletions components/beAMentor/beAMentorForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,56 +13,56 @@ const BeAMentorForm = () => (
src={`${ASSETS_URL}/assets/images/illustrations/speakr@2x.png`}
alt="Listen up"
/>
<Title type="h5Title">Mentor applications are open again!</Title>
<Title type="h5Title">Hey you! So you wanna be a mentor?</Title>
<Paragraph>
{'We\'ve created '}
<a href="/imagi-nation-tv" target="_blank" rel="noopener noreferrer">
{'IMAGI-NATION{TV}'}
</a>
{` & the IMAGI-NATION{CLASSROOM} experience to put a mentor in
the home every day during the tough times of COVID-19 and beyond.
It’s a daily TV show broadcast live on the internet, and it’s a
gift for teachers, parents and kids to help make sense of today
& imagine tomorrow. Mentoring will naturally be a little different
in this environment but
`}
<mark>
we need mentors
</mark>
&nbsp;more than ever!
Mentor applications aren&apos;t open just yet as we&apos;re
updating our processes. However, you should get a head-start by&nbsp;
<strong>registering your details</strong>
{' '}
and creating an AIME account.
Once they&apos;re open, we&apos;ll notify you so you can complete
your application.
</Paragraph>
</div>
<br />
<Paragraph>
Trust us when we say,&nbsp;
<mark>
the opportunities when you mentor at AIME are extensive
</mark>
&nbsp;and go further than you would think.
</Paragraph>
<Paragraph>
{'If you\'re new to mentoring with us,'}
{' '}
<strong>sign up</strong>
<Paragraph>
{'If you\'re new to mentoring with us,'}
{' '}
<strong>sign up</strong>
&nbsp;below.&nbsp;
{'If you\'ve mentored before, '}
<strong>sign in</strong>
{'If you\'ve mentored before, '}
<strong>sign in</strong>
&nbsp;
{`to your AIME account below. Either way,
{`to your AIME account below. Either way,
enter the AIME Universe through the button below and
we'll guide you through your mentor application process.
Good luck!`}
</Paragraph>
</Paragraph>
<Button
theme={process.env.REACT_APP_THEME}
type="link"
target="_blank"
url="https://portal.aimementoring.com/login?eoi-table=Be-a-Mentor"
>
Sign up
</Button>
</div>
<br />
<Button
theme={process.env.REACT_APP_THEME}
type="link"
target="_blank"
url="https://portal.aimementoring.com/login?eoi-table=Be-a-Mentor"
>
Start now
</Button>

<Paragraph>
<mark> And here's another opportunity!</mark>
{' '}
We want to give you the stage to lead AIME on your campus as a student chapter.
We’ll provide you with all the necessary training and tools, and connect you to a global network of change makers,
and dedicated mentors and coaches from AIME via
<mark>{' IMAGI-NATION {University}'}</mark>
{' '}
{' '}
throughout 2021.
We’ll give you the title of
<mark>{' IMAGI-NATION {President}'}</mark>
.
Learn more
<a href="https://imagination.aimementoring.com/university" target="_blank"> here</a>
.
</Paragraph>
</div>
);

Expand Down
1 change: 1 addition & 0 deletions components/beAMentor/heroBanner.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
.heroBannerMentor {
background-image: linear-gradient(($watermelon + cc), ($watermelon + cc)), url($cdnRoot + 'assets/images/banner/banner-mentors@2x.jpg');
composes: banner from '../../styles/patterns/patternBanner.module.scss';
margin: 0;
}
2 changes: 1 addition & 1 deletion components/beAMentor/welcomeBox.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const WelcomeBox = () => (
as mentors for marginalised youth and lead a revolution for them to rise up out of
inequality. We&apos;ve been working with Aboriginal and Torres Strait islander
kids in Australia
for the past 15 years and in 2020 we&apos;re working across Australia, Uganda, South Africa,
for the past 16 years and in 2021 we&apos;re working across Australia, Uganda, South Africa,
Nigeria and the United States. We
understand that what we are fighting for is a global issue, and it takes a united effort to
defeat systematic oppression. We are aware that these issues don’t exist just in our
Expand Down
3 changes: 2 additions & 1 deletion components/beAMentor/yearHeader.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ import styles from './yearHeader.module.scss';
const YearHeader = () => (
<div className={styles.beAMentorYearHeader}>
<Title type="headingLockup" align="center" className={styles.yearWelcomeHeading} theme={process.env.REACT_APP_THEME}>
{`Bring on ${new Date().getFullYear()},`}
{/* {`Bring on ${new Date().getFullYear()},`} */}
{'Bring on 2021'}
<strong>
Change is
<br />
Expand Down
1 change: 0 additions & 1 deletion components/positions/jobForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ const JobForm = ({
<form
className="job-application"
acceptCharset="UTF-8"
action="https://formkeep.com/f/50e5b258d8a7"
method="POST"
>
<AboutYouSectionForm handleChange={handleFormFieldChange} values={values} />
Expand Down
27 changes: 16 additions & 11 deletions pages/be-a-mentor/index.js
Original file line number Diff line number Diff line change
@@ -1,22 +1,27 @@
import React from 'react';
import Layout from '../../hocs/basicLayout';
import ErrorBoundary from '../../components/common/errorBoundary';
import styles from './be-a-mentor.module.scss';
import BeAMentorForm from '../../components/beAMentor/beAMentorForm';
import WelcomeBox from '../../components/beAMentor/welcomeBox';
import HeroBanner from '../../components/beAMentor/heroBanner';
import YearHeader from '../../components/beAMentor/yearHeader';

const BeAMentor = () => (
<Layout>
<HeroBanner />
<section className={styles.wrapper}>
<div className={styles.container}>
<YearHeader />
<WelcomeBox />
<BeAMentorForm />
</div>
</section>
</Layout>
<div>
<ErrorBoundary>
<main role="main">
<HeroBanner />
<section className={styles.wrapper}>
<div className={styles.container}>
<YearHeader />
<WelcomeBox />
<BeAMentorForm />
</div>
</section>
<div id="aime-parent-video-box" />
</main>
</ErrorBoundary>
</div>
);


Expand Down

2 comments on commit e34ebfc

@aime-bot
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Size Checks (0 failures)

Size Checks

Label Value Threshold Success
out/favicon.ico 2.09 KB 4 KB
out/index.html 60.74 KB 80 KB
out/service-worker.js 13.41 KB 15 KB
out 8.88 MB 70 MB
.next/service-worker.js 13.41 KB 15 KB

Axe Audits (0 failures)

Axe Audits

Label Value Threshold Success
aria-allowed-attr critical
aria-allowed-role none
aria-hidden-body none
aria-required-attr none
aria-required-children none
aria-required-parent none
aria-roles none
aria-valid-attr-value none
aria-valid-attr none
avoid-inline-spacing none
button-name none
bypass none
color-contrast serious serious
document-title none
duplicate-id-active none
duplicate-id minor minor
empty-heading none
form-field-multiple-labels none
heading-order moderate moderate
html-has-lang none
html-lang-valid none
image-alt none
image-redundant-alt none
label-title-only none
landmark-banner-is-top-level none
landmark-contentinfo-is-top-level none
landmark-main-is-top-level none
landmark-no-duplicate-banner none
landmark-no-duplicate-contentinfo none
landmark-one-main moderate
landmark-unique moderate moderate
link-name serious
list serious serious
listitem none
meta-viewport-large none
meta-viewport critical
page-has-heading-one moderate
duplicate-id minor minor
heading-order moderate moderate
label critical critical
landmark-unique moderate moderate
list serious serious
region moderate moderate

Heap Snapshot Checks (0 failures)

Heap Snapshot Checks

Label Value Threshold Success
Documents 3 11
Frames 1 5
JSHeapTotalSize 3657728 21889024
JSHeapUsedSize 2294952 13685832
LayoutCount 2 35
Nodes 728 1250
RecalcStyleCount 3 129

Lighthouse Audits (0 failures)

Lighthouse Audits

Label Value Threshold Success
Performance 91 80
Accessibility 90 80
Best Practices 85 80
SEO 94 85
Progressive Web App 68 60

@vercel
Copy link

@vercel vercel bot commented on e34ebfc Dec 22, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.