Skip to content

Add call for new maintainers to homepage #782

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions src/pages/index.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -84,3 +84,22 @@
margin-left: 0;
}
}

.banner {
background-color: #f8f9fa;
padding: 16px;
text-align: center;
margin: 20px 0;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.banner h2 {
margin: 0 0 8px;
color: #0366d6;
}

.banner p {
margin: 4px 0;
font-size: 16px;
}
40 changes: 40 additions & 0 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,45 @@ function HomepageHeader() {
);
}

function HomepageNewMaintainers() {
return (
<div className={css.banner}>
<h2>
<span role="img" aria-label="Rocket">
🚀
</span>{' '}
Sequelize Needs Maintainers!{' '}
<span role="img" aria-label="Rocket">
🚀
</span>
</h2>
<p>
Want to help finish the next major release of Sequelize? We're looking for new contributors
and maintainers!{' '}
<span role="img" aria-label="Lamp">
💡
</span>
</p>
<p>
<strong>
<span role="img" aria-label="Money">
💰
</span>{' '}
Funding available:
</strong>{' '}
$2,500 per quarter distributed among maintainers.
</p>
<p>
<span role="img" aria-label="Message">
📩
</span>{' '}
<Link to="https://sequelize.org/slack">Join our Slack</Link> and reach out to{' '}
<strong>@WikiRik</strong> or <strong>@sdepold</strong>.
</p>
</div>
);
}

export default function Home(): JSX.Element {
const { siteConfig } = useDocusaurusContext();

Expand All @@ -69,6 +108,7 @@ export default function Home(): JSX.Element {
</Head>
<HomepageHeader />
<main>
<HomepageNewMaintainers />
<HomepageUsage />
<HomepageFeatures />
<BrowserOnly>{() => <HomepageUsers />}</BrowserOnly>
Expand Down
Loading