Skip to content
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

πŸ’„ Better assets on the homepage of the website #4754

Merged
merged 1 commit into from Feb 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion website/docusaurus.config.ts
Expand Up @@ -104,7 +104,7 @@ const config: Config = {
{ label: 'API Reference', href: 'https://fast-check.dev/api-reference/index.html' },
{ label: 'GitHub', href: 'https://github.com/dubzzz/fast-check' },
{
html: `<a href="https://www.netlify.com" target="_blank" rel="noreferrer noopener" aria-label="Deploys via Netlify"><img src="https://www.netlify.com/v3/img/components/netlify-color-accent.svg" alt="Deploys by Netlify" alt="Deploys by Netlify" width="114" height="51" /></a>`,
html: `<a href="https://www.netlify.com" target="_blank" rel="noreferrer noopener" aria-label="Deploys via Netlify"><img src="https://www.netlify.com/v3/img/components/netlify-color-accent.svg" alt="Deploys by Netlify" width="114" height="51" loading="lazy" /></a>`,
},
],
},
Expand Down
2 changes: 1 addition & 1 deletion website/src/components/HomepageHeader/index.js
Expand Up @@ -21,7 +21,7 @@ export default function HomepageHeader() {
<img src="https://badge.fury.io/js/fast-check.svg" alt="npm version" width={133} height={20} />
</a>
<a href="https://www.npmjs.com/package/fast-check" target="_blank" rel="noopener">
<img src="https://img.shields.io/npm/dm/fast-check" alt="monthly downloads" width={136} height={20} />
<img src="https://img.shields.io/npm/dm/fast-check" alt="monthly downloads" width={146} height={20} />
</a>
<a href="https://github.com/dubzzz/fast-check/stargazers" target="_blank" rel="noopener">
<img
Expand Down
1 change: 1 addition & 0 deletions website/src/components/HomepageHeader/styles.module.css
Expand Up @@ -30,6 +30,7 @@
display: flex;
flex-direction: row;
justify-content: center;
flex-wrap: wrap;
gap: 0.2em;
}

Expand Down